This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
/* | |
This object allows any object to define its own properties and methods. | |
Chainable. | |
Usage: | |
let foo = __.compose(Object.create(null), ObjectExtensions); | |
foo.property("propOne", 1).property("prop2", 2).def("fn", () => ({})); |
NewerOlder