recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
15 lines • 500 B
JavaScript
import { isFunction } from './isFunction';
import { isScheduler } from './isScheduler';
function last(arr) {
return arr[arr.length - 1];
}
export function popResultSelector(args) {
return isFunction(last(args)) ? args.pop() : undefined;
}
export function popScheduler(args) {
return isScheduler(last(args)) ? args.pop() : undefined;
}
export function popNumber(args, defaultValue) {
return typeof last(args) === 'number' ? args.pop() : defaultValue;
}
//# sourceMappingURL=args.js.map