Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

yaicc/function-park

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

13 Commits

Repository files navigation

function-park

function-park is an common functions package for Nodejs。

Installation

npm install --save function-park

Usage

string.js

var S = require('function-park').string;
Function list
Name Description
trim Used for trimming whitespace
ltrim Used for trimming whitespace at left
rtrim Used for trimming whitespace at right
left Return part of a string from left
right Return part of a string from right
ucfirst Uppercase the first character of a string
lcfirst Lowercase the first character of a string
md5 Calculate the md5 hash of a string
sha1 Calculate the sha1 hash of a string
is_email Is an email string or not
is_ip Is an ip string or not
strip_tags Strip HTML tags from a string
Example
var S = require('function-park').string;
var str = "My name is Nemo!";
console.log(S(str).lcfirst()); //print "my name is Nemo!"

Well, it's also can call these methods directly on native String. Just like this:

var S = require('function-park').string;
S.extendToString();
console.log("My name is Nemo!".lcfirst().ucfirst()); //print "My name is Nemo!"

About

Common functions for Js/NodeJs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

AltStyle によって変換されたページ (->オリジナル) /