Files
fvtt-hamalron/node_modules/localforage/src/utils/getCallback.js
T
2025-12-25 23:08:06 +01:00

9 lines
203 B
JavaScript

export default function getCallback() {
if (
arguments.length &&
typeof arguments[arguments.length - 1] === 'function'
) {
return arguments[arguments.length - 1];
}
}