dwnpm
Version:
Decentralized Registry Package Manager (DRPM) helps developers publish, install, find and manage Decentralized Packages (DPKs) published to Decentralized Web Nodes (DWNs). DRPM does this by looking up a Decentralized Identifier (DID) to find its DID docum
11 lines • 305 B
JavaScript
String.prototype.proper = function () {
return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase();
};
String.prototype.upper = function () {
return this.toUpperCase();
};
String.prototype.lower = function () {
return this.toLowerCase();
};
export {};
//# sourceMappingURL=string.js.map