npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

js-tint

v0.0.13

Published

a tool help to using javascript quickly

Downloads

16

Readme

jsTint

NPM version npm GitHub stars GitHub forks

A tools to help you using javascript quickly and smoothly


Feature

  • Help you using javascript quickly and smoothly

Install

  • Install js-tint
$ npm i js-tint --save

Usage

import { jsTint } from 'js-tint';
const { _date, _object, _string, _web, _fetch } = jsTint;

API

  • _date
console.log(_date.YYYYMMDD());   =>   2017-08-01
console.log(_date.YYYYMMDD('/'));   =>   2017/08/01
console.log(_date.YYYYMMDD(new Date(), '-'))   =>   2017-08-01
console.log(_date.YYYYMMDD(1501568433291, '-'))   =>   2017-08-01

console.log(_date.YYYYMMDDHHmmss());   =>   2017-08-01 14:21:23
console.log(_date.YYYYMMDDHHmmss(new Date(), {dateSep: '/', timeSep: '/'}));   =>   2017/08/01 14/21/23

console.log(_date.timestamp());   =>   1501568586
  • _number
console.log(_number.tofixed(2.3251, 2));   =>   2.33   
  • _object
console.log(_object.isObject({a: 1, b: 2}));   =>   true
console.log(_object.has({a: 1, b: 2}, 'a'));   =>   true
console.log(_object.deepCopy({a: 1, b: 2, c: {d: 1}, e: [1, 2, 3]}));   =>   {a: 1, b: 2, c: {d: 1}, e: [1, 2, 3]}
  • _string
console.log(_string.isString('dsadas'))   =>   true
console.log(_string.isEmail('[email protected]'))   =>   true
console.log(_string.isMobile('18170860810'))   =>   true
console.log(_string.isChinese('杜少小丢丢'))   =>   true
console.log(_string.randomString());   =>   STUVWXYZabcdefgh
console.log(_string.randomString(10));   =>   STUYZabcfg
console.log(_string.randomString(3, 'STUVWXYZ'));   =>   SWX
  • _web
console.log(_web.getQueryString('name'));   =>   dushao103500
console.log(_web.getQueryString('name', 'http://www.baidu.com?name=dushao&password=12345'));   =>   dushao
  • _fetch
_fetch('http://abc.json', { method: 'get', params: { name: 'dushao' } })
  .then(function(response) { return response.json(); })
  .then( function(value) { console.log(value); })