A library for handling strings in smart ways, including manipulation and encoding, with TypeScript support.
Go to file
2016-07-06 10:04:25 +02:00
dist prepare indent functionality 2016-07-06 10:04:25 +02:00
test prepare indent functionality 2016-07-06 10:04:25 +02:00
ts prepare indent functionality 2016-07-06 10:04:25 +02:00
.gitignore initial 2016-02-23 07:06:54 +01:00
.gitlab-ci.yml fix gitlab.yml 2016-06-05 09:35:42 +02:00
LICENSE Initial commit 2016-02-23 02:57:12 +01:00
package.json prepare indent functionality 2016-07-06 10:04:25 +02:00
README.md prepare indent functionality 2016-07-06 10:04:25 +02: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