astro-ghostcms/.pnpm-store/v3/files/78/a2226ef8aea8e9cedb5b989f354...

7 lines
185 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
export default function _isNativeFunction(fn) {
try {
return Function.toString.call(fn).indexOf("[native code]") !== -1;
} catch (e) {
return typeof fn === "function";
}
}