UNPKG

tsoid

Version:

Typed functional library to deal with async operations.

12 lines (11 loc) 182 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Identity function * * @param arg */ function id(arg) { return arg; } exports.default = id;