fluentnode
Version:
Fluent apis for node (based on the concepts used in C#'s FluentSharp
16 lines (11 loc) • 365 B
JavaScript
// Generated by CoffeeScript 1.12.7
(function() {
String.prototype.url_Encode = function() {
return encodeURIComponent(this);
};
String.prototype.encode_Url = String.prototype.url_Encode;
String.prototype.url_Decode = function() {
return decodeURIComponent(this);
};
String.prototype.decode_Url = String.prototype.url_Decode;
}).call(this);