string_action.js 97 B

1234
  1. module.exports = function (str1,action,str2){
  2. str1.__proto__[action]=str2;
  3. return str1;
  4. }