WIP - add extractor, generate snippet_data
This commit is contained in:
7
node_modules/underscore.string/helper/makeString.js
generated
vendored
Normal file
7
node_modules/underscore.string/helper/makeString.js
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Ensure some object is a coerced to a string
|
||||
**/
|
||||
module.exports = function makeString(object) {
|
||||
if (object == null) return '';
|
||||
return '' + object;
|
||||
};
|
||||
Reference in New Issue
Block a user