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

doodlin-string

v0.1.9

Published

doodlin corp's string util

Downloads

76

Readme

dhoonjang's string utils

  • JavaScript string 과 관련되 util 함수들을 모아놓은 라이브러리입니다.

Utils

Check

  • isArrayEqual: 두 배열이 같은 요소를 담고 있는지 확인
  • isUrlPath: url pattern을 가지고 있는지 확인
  • isProperString: 정상적인 문자열인지 확인
  • isNumber: 문자가 숫자로만 이루어져있는지 확인
  • isName: 제대로된 이름의 문자열인지 확인 (기본 길이 2 ~ 16)
  • isEmail: 이메일 형식의 문자열인지 확인
  • isPw: 기본적인 비밀번호 형식을 갖추었는지 확인 (기본 길이 8 ~16)
  • isPwStrick: 엄격한 비밀번호 형식을 갖추었는지 확인 (영어 대소문자, 숫자, 특수문자 한 개 이상씩 포함)
  • checkDuplicate: 똑같은 문자가 n번 이상 반복되는지 확인 (기본 3번)
  • checkContinuous: 연속되 문자 혹은 숫자가 n번 이상 반복되는지 확인 (기본 3번)
  • checkInclude: 특정 단어들이 문자열에 포함되는지 확인

Format

  • clearStringGap: 문자열의 스페이스를 지움
  • removeExtraSpaces: 문자열의 연속된 스페이스를 하나로 줄임
  • stringToRegExp: 일반 문자열을 정규 표현식으로 바꿈 (특수문자 앞에 \ 기호 붙임)
  • priceString: 숫자를 가격 문자열로 변경 (1000 -> 1,000)
  • getByteLength: 문자열의 byte 수를 가져옴

Json

  • isJson: 문자열이 json 형식인지 확인
  • jsonParseRepeater: 문자열이 json 형식일 때까지 n번 JSON.parse를 반복해서 실행

Mention

  • mentionTagReg: mention tag를 나타내는 정규표현식
  • matchMentionTag: mention tag에 해당하는 단어를 찾아서 반환
  • splitMentionTag: mention tag부분을 기준으로 문자열을 쪼갬
  • findMentionTag: 문자열에 포함되어 있는 mention tag를 검색
  • replaceMentionTag: mention tag 형식의 문자열을 display name으로 대체