Files
Shifted/node_modules/core-js-pure/internals/get-mode-option.js
2026-02-10 01:14:19 +00:00

9 lines
292 B
JavaScript

'use strict';
var $TypeError = TypeError;
module.exports = function (options) {
var mode = options && options.mode;
if (mode === undefined || mode === 'shortest' || mode === 'longest' || mode === 'strict') return mode || 'shortest';
throw new $TypeError('Incorrect `mode` option');
};