UNPKG

444 BJavaScriptView Raw
1define(["require", "exports"], function (require, exports) {
2 "use strict";
3 Object.defineProperty(exports, "__esModule", { value: true });
4 exports.isClonable = void 0;
5 function isClonable(obj) {
6 return (typeof obj === 'object')
7 && (obj !== null)
8 && ('clone' in obj)
9 && typeof obj.clone === 'function';
10 }
11 exports.isClonable = isClonable;
12});
13//# sourceMappingURL=clonable.js.map
\No newline at end of file