You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
500 B
15 lines
500 B
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
|