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

@naverpay/utils

v0.1.1

Published

javascript utility library

Downloads

12

Readme

@naverpay/utils

자바스크립트 유틸리티 라이브러리입니다. (타입스크립트 지원)

Installation

npm install @naverpay/utils

Modules

| Name | Description | | :-------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------- | | 마지막_문자_받침_여부 | 한글의 마지막 단어 받침 여부를 확인합니다. | | 한글_여부 | 단어가 한글인지 확인합니다. | | backOrClose | 현재페이지에서 이전페이지가 있다면 뒤로가고, 이전 페이지가 없다면 현재창을 닫습니다. | | createKeyValuePairObject | Key와 동일한 문자열을 가진 Value를 연결한 Object를 생성합니다. | | createNumberFormatter | 숫자를 포맷팅하는 함수를 만들어주는 고차함수 | | createSeededRandom | 선형 합동 생성기(Linear Congruential Generator, LCG)를 사용하여 시드값을 기반으로 랜덤값을 생성합니다. | | createUrlLike | URL 클래스를 지원하지 않는 환경(IE11 등)까지 고려해야 할 때 사용하는 함수로, 환경에 따라 URL, HTMLAnchorElement 순서의 우선순위로 인스턴스를 생성합니다. | | debounce | 특정 함수가 너무 자주 호출되지 않도록 보장하는 유틸리티입니다. | | deepMerge | 주어진 객체들을 순서대로 병합하며 하나의 객체를 반환합니다. | | DeferredPromise | pending 상태의 promise 객체를 생성하여, 외부에서 resolve, reject 할 수 있게 합니다. | | disassemble문자 | 한글 한글자를 초성/중성/종성으로 분리합니다.ex) 밟 > ㅂ / ㅏ / ㄹㅂ | | encodeHTMLEntity | <, &, >, ", ' 등의 문자열을 HTML에 삽입할 수 있도록 변경해줍니다. | | formatNumberWithComma | 숫자 또는 문자열을 천단위로 나누어 구분자를 추가합니다. | | formatTenThousandUnitsAmount | 만 단위 이상 금액을 표기하는 함수입니다. | | generateRandomString | 임의의 문자열을 반환합니다. | | get조사 | 한글 단어의 마지막 단어에 따라 조사를 가지고 옵니다. | | getKoreanWithSuffix | 단어에 알맞는 조사를 붙여 반환합니다. | | getRandomNumber | 최대 값을 받아 0부터 최대 값 - 1 사이의 무작위 정수를 반환합니다. | | getSecureMathRandom | 보안 취약점이 있는 Math.random() 대신, 안전한 난수 생성 방식을 사용하여 랜덤값을 반환합니다. | | isEmpty | 해당 객체나 문자열이 비어있는지 확인합니다. | | maskAccountNumber | 계좌번호를 앞자리 3개, 뒷자리 4개를 제외하고 마스킹합니다. | | maskCardNumber | 카드번호를 앞자리 4개, 뒷자리 4개를 제외하고 마스킹합니다. | | maskEmail | 이메일을 아이디 앞자리 2개 제외, 도메인 앞자리 1개를 제외하고 마스킹합니다. | | maskPassportNumber | 여권번호를 뒷자리 4개만 마스킹합니다. | | maskPhoneNumber | 휴대전화 번호를 마스킹합니다. | | maskString | 입력된 문자열을 규칙에 따라 마스킹합니다. | | replaceNoBreakSpace | 공백을 NO-BREAK SPACE인 U+00A0으로 변환해줍니다. | | sleep | sleep는 자바스크립트의 쓰레드를 ms 만큼 중지(지연) 시킵니다. | | throttle | 특정 함수가 일정 시간 간격 이상으로 호출되도록 제한하는 유틸리티입니다. | | with조사 | 한글 단어의 마지막 단어에 따라 단어 + 조사를 반환합니다. |

Contribution

여러 프로젝트, 혹은 프로젝트 내부에 걸쳐서 여러 군데에서 사용 가능한 유틸이 있다면 자유롭게 추가하실 수 있습니다. 유틸 추가 시에는 아래 사항을 준수해주세요.

  • typescript로 작성되어야 합니다.
  • 필요시 적절한 테스트 코드를 추가해주세요.
  • 공통으로 사용되는 유틸인지, 순수함수인지 한번 더 확인해주세요.