WIP - add extractor, generate snippet_data
This commit is contained in:
10
node_modules/underscore.string/exports.js
generated
vendored
Normal file
10
node_modules/underscore.string/exports.js
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
module.exports = function() {
|
||||
var result = {};
|
||||
|
||||
for (var prop in this) {
|
||||
if (!this.hasOwnProperty(prop) || prop.match(/^(?:include|contains|reverse|join|map|wrap)$/)) continue;
|
||||
result[prop] = this[prop];
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
Reference in New Issue
Block a user