UNPKG

inversify

Version:

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

8 lines (7 loc) 194 B
function isClonable(obj) { return (typeof obj === 'object') && (obj !== null) && ('clone' in obj) && typeof obj.clone === 'function'; } export { isClonable };