UNPKG

pig-dam-core

Version:

Library that should be included in every Pig DAM project we build

21 lines (20 loc) 571 B
"use strict"; /** * Date: 3/9/18 * Time: 8:23 PM * @license MIT (see project's LICENSE file) */ Object.defineProperty(exports, "__esModule", { value: true }); exports.mutable = exports.immutable = void 0; const immutableArray = require("./immutable/array"); const immutableObject = require("./immutable/object"); const mutableArray = require("./mutable/array"); const mutableObject = require("./mutable/object"); exports.immutable = { array: immutableArray, object: immutableObject }; exports.mutable = { array: mutableArray, object: mutableObject };