Description of the querystring.escape method in node.js

  • 2020-03-30 04:36:09
  • OfStack

Method description:

This method enables you to override querystring.stringify

Grammar:


querystring.escape

Receiving parameters:

There is no

Source:


QueryString.escape = function(str) {
  return encodeURIComponent(str);
};


Related articles: