UNPKG

units

Version:

Module-like system with two-step initialization

10 lines (8 loc) 170 B
module.exports = { get: (target, prop) => { if (prop.slice(-1) === '?') { return target.get(prop.slice(0, -1)); } return target.require(prop); } }