mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 07:38:25 -04:00
12 lines
254 B
JavaScript
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;
|
|
|
|
});
|