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

7 lines
185 B
Plaintext

export default function _isNativeFunction(fn) {
try {
return Function.toString.call(fn).indexOf("[native code]") !== -1;
} catch (e) {
return typeof fn === "function";
}
}