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

utils79

v0.1.0

Published

NodeJS Utilities.

Downloads

16

Readme

utils79

Utility functions.

Install

$ npm install --save utils79

API

var str = utils79.toStr(val);

文字列型に置き換える。 nullundefined は空白文字に変換される。

var str = utils79.trim(str);

文字列の前後から空白文字列を削除する。

var str = utils79.h(str);

HTML特殊文字をエスケープする。

var keys = utils79.array_keys(ary);

配列(または連想配列)のキーの配列を取得する。

var count = utils79.count(ary);

配列(または連想配列)の要素数を数える。

var base64 = utils79.base64_encode(bin);

base64エンコードする。

var bin = utils79.base64_decode(base64);

base64デコードする。

var md5 = utils79.md5(bin);

md5ハッシュを求める。

var sha1 = utils79.sha1(bin);

sha1ハッシュを求める。

var str_pad = utils79.str_pad(input, pad_length, pad_string = ' ', pad_type = 'right');

文字列を指定された桁数になるように埋める。

var is = utils79.is_file(path);

ファイルが存在するか調べる。

var is = utils79.is_dir(path);

ディレクトリが存在するか調べる。

var basename = utils79.basename(path);

パス文字列から、ファイル名を取り出す。

var dirname = utils79.dirname(path);

ディレクトリ名を得る。

var path = utils79.normalize_path(path);

パスを正規化する。

受け取ったパスを、スラッシュ区切りの表現に正規化します。Windowsのボリュームラベルが付いている場合は削除します。

URIスキーム(http, https, ftp など) で始まる場合、2つのスラッシュで始まる場合(//www.example.com/abc/ など)、これを残して正規化します。

  • 例: \a\b\c.html/a/b/c.html バックスラッシュはスラッシュに置き換えられます。
  • 例: /a/b////c.html/a/b/c.html 余計なスラッシュはまとめられます。
  • 例: C:\a\b\c.html/a/b/c.html ボリュームラベルは削除されます。
  • 例: http://a/b/c.htmlhttp://a/b/c.html URIスキームは残されます。
  • 例: //a/b/c.html//a/b/c.html ドメイン名は残されます。

var str = utils79.regexp_quote(str);

正規表現で使えるようにエスケープ処理を施す。

utils79.validate(values, rules, callback);

入力値のセットを確認する。

内部で validator を使用します。 validator のAPI一覧 https://www.npmjs.com/package/validator を参照してください。

var ary = utils79.divide(str, n);

文字列をn文字ずつ分割する。

utils79.preg_quote(str);

正規表現のメタ文字をエスケープする。

更新履歴 - Change log

utils79 v0.1.0 (2023年11月13日)

  • str_pad() を追加。
  • preg_quote() を追加。

utils79 v0.0.5 (2018-09-01)

  • 文字列操作系のメソッドに、文字列以外の値を渡した場合にエラーが起きる問題を修正。

utils79 v0.0.4 (2017-02-12)

  • Add new API: h()
  • Add new API: md5()
  • Add new API: sha1()

utils79 v0.0.3 (2017-01-15)

  • Add new API: array_keys()
  • Add new API: count()

utils79 v0.0.2 (2016-12-29)

  • Add new API: devide()

utils79 v0.0.1 (2016-09-05)

  • initial release.

ライセンス - License

MIT License https://opensource.org/licenses/mit-license.php

作者 - Author