UNPKG

205 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = identityFunc;
7
8/**
9 * Returns the first argument it receives.
10 */
11function identityFunc(x) {
12 return x;
13}