UNPKG

tdesign-mobile-vue

Version:
24 lines (20 loc) 462 B
/** * tdesign v1.15.0 * (c) 2026 TDesign Group * @license MIT */ 'use strict'; /** * The base implementation of `_.unary` without support for storing metadata. * * @private * @param {Function} func The function to cap arguments for. * @returns {Function} Returns the new capped function. */ function baseUnary(func) { return function (value) { return func(value); }; } exports.baseUnary = baseUnary; //# sourceMappingURL=dep-8e913c55.js.map