Files
Job_App/node_modules/core-js-pure/internals/get-alphabet-option.js
2025-03-28 12:30:19 +11:00

9 lines
297 B
JavaScript

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