UNPKG

inversify

Version:

A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.

8 lines 223 B
function isClonable(obj) { return (typeof obj === 'object') && (obj !== null) && ('clone' in obj) && typeof obj.clone === 'function'; } export { isClonable }; //# sourceMappingURL=clonable.js.map