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

taro-js-tools

v1.0.1

Published

Taro Js工具库

Downloads

5

Readme

Taro js-tools

js工具库,支持日期函数、gps转换函数、表单验证函数、导航函数、字符串处理函数、全局变量、url参数、md5加密、base64加解密

使用方法

npm install taro-js-tools
or
yarn add taro-js-tools

日期函数

import {
dateToStr,
dateDiff,
dateAdd,
isLeapYear,
strToDate,
strFormatToDate,
dateToLong,
longToDate,
isDate,
getMaxDay,
maxDayOfDate,
datePart
} from 'react-native-text-radius/lib/date'

路由

import nav from 'react-native-text-radius/lib/nav'
nav('/pages/index/index')

表单验证

import verify from 'react-native-text-radius/lib/verify'
verify({
phone: 15587087521,
tel: 75148120
},{
phone:{
emptyMsg: '请输入电话号码',
errMsg: '不是正确的电话号码'
reg: 'require|phone'
}
})

URL

import { getQuery,getUrlParam } from 'react-native-text-radius/lib/query'

全局变量

import { set,get } from 'react-native-text-radius/lib/global-data'

GPS

import { gcjEncrypt,gcjDecrypt,gcjDecryptExact,bdEncrypt,bdDecrypt,distance } from 'react-native-text-radius/lib/gps'

字符串

import { randomString,phoneHiding } from 'react-native-text-radius/lib/string'
// 生成32位随机字符串 randomString(32)
// 隐藏电话号码中间4位
phoneHiding(18888888888)

MD5

import md5 from 'react-native-text-radius/lib/md5'

BASE64

import {base64Encode,base64Decode} from 'react-native-text-radius/lib/base64'