tdesign-mobile-vue
Version:
tdesign-mobile-vue
24 lines (20 loc) • 461 B
JavaScript
/**
* tdesign v1.9.3
* (c) 2025 TDesign Group
* @license MIT
*/
;
/**
* 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-4dfb9b9c.js.map