UNPKG

ix

Version:

The Interactive Extensions for JavaScript

23 lines (21 loc) 467 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.identityAsync = exports.identity = void 0; const tslib_1 = require("tslib"); /** * @ignore */ function identity(x) { return x; } exports.identity = identity; /** * @ignore */ function identityAsync(x) { return tslib_1.__awaiter(this, void 0, void 0, function* () { return x; }); } exports.identityAsync = identityAsync; //# sourceMappingURL=identity.js.map