1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-11 00:52:44 +03:00
mal/js/interop.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

2015-02-26 08:01:16 +03:00
// Node vs browser behavior
var interop = {};
if (typeof module === 'undefined') {
var exports = interop,
GLOBAL = window;
}
function resolve_js(str) {
if (str.match(/\./)) {
var re = /^(.*)\.[^\.]*$/,
2015-02-26 08:01:16 +03:00
match = re.exec(str);
return [eval(match[1]), eval(str)];
2015-02-26 08:01:16 +03:00
} else {
return [GLOBAL, eval(str)];
}
}
function js_to_mal(obj) {
if (obj === null || obj === undefined) {
return null;
}
2015-02-26 08:01:16 +03:00
var cache = [];
var str = JSON.stringify(obj, function(key, value) {
if (typeof value === 'object' && value !== null) {
if (cache.indexOf(value) !== -1) {
// Circular reference found, discard key
return;
}
// Store value in our collection
cache.push(value);
}
return value;
});
cache = null; // Enable garbage collection
return JSON.parse(str);
}
exports.resolve_js = interop.resolve_js = resolve_js;
exports.js_to_mal = interop.js_to_mal = js_to_mal;