Files
feedstr.live/node_modules/underscore/amd/toString.js
T
2023-11-25 18:12:47 -05:00

12 lines
254 B
JavaScript

define(['./value'], function (value) {
// Provide an unwrapping proxy for automatic string coercion in engine
// operations such as JSON stringification.
function toString(wrapper) {
return String(value(wrapper));
}
return toString;
});