getCallback.js 220 B

123456
  1. export function getCallback(..._args) {
  2. if (arguments.length && typeof arguments[arguments.length - 1] === 'function') {
  3. return arguments[arguments.length - 1];
  4. }
  5. }
  6. //# sourceMappingURL=getCallback.js.map