This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/function/unary.js
T

12 lines
201 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const ary = require('./ary.js');
function unary(func) {
return ary.ary(func, 1);
}
exports.unary = unary;