wallet-core/node_modules/core-js/modules/$.string-context.js

8 lines
311 B
JavaScript
Raw Normal View History

2017-05-03 15:35:00 +02:00
// helper for String#{startsWith, endsWith, includes}
var isRegExp = require('./$.is-regexp')
, defined = require('./$.defined');
module.exports = function(that, searchString, NAME){
if(isRegExp(searchString))throw TypeError('String#' + NAME + " doesn't accept regex!");
return String(defined(that));
};