mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-07 06:37:16 +00:00
13 lines
264 B
JavaScript
13 lines
264 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true
|
|
});
|
|
|
|
exports['default'] = function (rule, prop) {
|
|
return rule.nodes.filter(function (n) {
|
|
return ~n.prop.indexOf(prop);
|
|
}).pop();
|
|
};
|
|
|
|
module.exports = exports['default']; |