491dea0fca98cb2c198e9db9368270bf7249535276d169e8cb13b2f78ffe1957459a212b79f142f3468969fd1de90c830b7a88771ff227abb9806097c7870c 182 B

123456
  1. 'use strict';
  2. module.exports = function (str) {
  3. return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
  4. return '%' + c.charCodeAt(0).toString(16).toUpperCase();
  5. });
  6. };