Logo
Explore Help
Register Sign In
davidl/cloud-code
1
0
Fork 0
You've already forked cloud-code
Code Issues Pull Requests Actions Packages Projects Releases Wiki Activity
Files
a192e187e8ace0ffe6733d109ce6d7be3c9d5268
cloud-code/claude-code-source/node_modules/lodash-es/_baseUnary.js

15 lines
330 B
JavaScript
Raw Normal View History

fix: keep only source-map extracted node_modules, exclude pnpm artifacts Restore node_modules to exact state from cli.js.map extraction: - Move .ignored/ and .ignored_* files back to original package paths - Remove pnpm symlinks (replaced by real source-map directories) - Update .gitignore: only exclude /dist/, .pnpm/, .bin/, .ignored* dirs - All package dist/ folders are now preserved as part of source-map files After clone, run `pnpm install` to get pnpm-managed symlinks for building. The committed node_modules contains the original TypeScript/JS source files as bundled in cli.js.
2026-03-31 21:09:32 +08:00
/**
* 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);
};
}
export default baseUnary;
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.5 Page: 32ms Template: 2ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API