Files
Manmics/mangashelf-server/node_modules/@honeo/check/not.mjs
T
2025-10-10 18:00:07 -04:00

15 lines
225 B
JavaScript

/*
isを元にnot作成
*/
import is from './is.mjs';
const not = Object.create(null);
for(let [key, func] of Object.entries(is) ){
not[key] = (...args)=>{
return !func(...args);
}
}
export default not;