A library for handling strings in smart ways, including manipulation and encoding, with TypeScript support.
Go to file
2016-07-22 22:34:51 +00:00
dist switched to ES6 2016-07-17 17:30:26 +02:00
test switched to ES6 2016-07-17 17:30:26 +02:00
ts ignore empty lines for indent.normalize() 2016-07-08 01:49:32 +02:00
.gitignore initial 2016-02-23 07:06:54 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml 2016-07-22 22:34:51 +00:00
LICENSE Initial commit 2016-02-23 02:57:12 +01:00
package.json 2.0.15 2016-07-17 17:30:35 +02:00
README.md Update README.md 2016-07-21 22:17:56 +00:00

smartstring

handle strings in smart ways. TypeScript ready.

Status

build status Dependency Status bitHound Dependencies bitHound Code

Usage

Use TypeScript for intellisense.

import * as smartstring from "smartstring";

// smartstring.GitRepo class
let myGitRepo = new smartstring.GitRepo("git@github.com:someorg/somerepo.git"); // takes https and git and npm repo URL versions
myGitRepo.host // "github.com"
myGitRepo.user // "someorg"
myGitRepo.repo // "somerepo"
myGitRepo.accessToken // accessToken if specified with https
myGitRepo.sshUrl // "git@github.com:someorg/somerepo.git" (computed also from https)
myGitRepo.httpsUrl // "https://github.com/someorg/somerepo.git" (computed also from ssh)

// smartstring.Domain class
let myDomain = new smartstring.Domain("https://sub.main.tld");
myDomain.level1 // "tld"
myDomain.level2 // "main"
// level3 , level 4 and so on...
myDomain.zoneName // "main.tld"
myDOmain.protocol // "https"

About the authors:

Project Phase

PayPal