xtorcga
Version:
Xtor Compute Geometry Algorithm Libary 计算几何算法库
8 lines (7 loc) • 369 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isBufferArray = void 0;
exports.isBufferArray = function (obj) {
var types = ['Int8Array', 'Uint8Array', 'Uint8ClampedArray', 'Int16Array', 'Uint16Array', 'Int32Array', 'Uint32Array', 'Float32Array', 'Float64Array'];
return types.indexOf(obj.constructor.name) > -1;
};