@kickscondor/umbrellajs
Version:
Lightweight and intuitive javascript library
15 lines (12 loc) • 346 B
JavaScript
// [INTERNAL USE ONLY]
// Create a string from different things
u.prototype.str = function (node, i) {
return function (arg) {
// Call the function with the corresponding nodes
if (typeof arg === 'function') {
return arg.call(this, node, i);
}
// From an array or other 'weird' things
return arg.toString();
};
};