Blame view

node_modules/es5-ext/reg-exp/#/split/shim.js 162 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
  "use strict";
  
  var validRegExp = require("../../valid-reg-exp");
  
  module.exports = function (string) {
  	validRegExp(this);
  	return String(string).split(this);
  };