UNPKG

space-lift

Version:

TypeScript Array, Object, Map, Set, Union, Enum utils

12 lines (11 loc) 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isWrapper = exports.getValue = void 0; function getValue(input) { return isWrapper(input) ? input.value() : input; } exports.getValue = getValue; function isWrapper(obj) { return obj && obj['_isLiftWrapper']; } exports.isWrapper = isWrapper;