first commit

This commit is contained in:
2025-10-10 18:00:07 -04:00
commit 06b59a3a99
3786 changed files with 571590 additions and 0 deletions
@@ -0,0 +1,14 @@
import isObj from './is-object.mjs';
import isFunc from './is-function.mjs';
/*
引数がAbortControllerインスタンスか
Polyfillでも機能するようにしている。
*/
function isAbortController(ac){
return isObj(ac)
&& isFunc(ac.constructor)
&& ac.constructor.name==='AbortController';
}
export default isAbortController;