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

@kurly-lfd/remove-separator

v1.0.2

Published

콤마 등의 구분자를 제거하여 숫자로 반환해주는 기능

Downloads

5

Readme

removeSeparator

내용

콤마 등의 구분자를 제거하여 숫자로 반환해주는 기능

개발할 때

설치

설치 시 오류가 발생할 경우 node와 npm을 최신으로 업데이트 해주세요.

npm install

사용

포트는 3030을 사용합니다.

npm run start

테스트

작성된 spec에 맞춰 콘솔에 해당 내용을 출력합니다.

npm run test:unit

TDD

TDD 모드를 별도로 제공합니다. 아래의 명령어를 입력하면 TDD 모드를 실행할 수 있습니다.

npm run test:tdd

빌드

생성된 lib 디렉토리의 .js를 이용합니다.

npm run build

사용할 때

npm package 설치

npm install @kurly-lfd/remove-separator --save

개발환경에서 모듈형태로 사용할 경우

import { removeSeparator } from '@kurly-lfd/remove-separator';

lib/change-name.js 파일을 직접 로드하여 사용할 경우

KurlyRemSep.removeSeparator('100,000'); // 100000

혹은

const { removeSeparator } = KurlyRemSep;
removeSeparator('100,000'); // 100000

주의사항

아래와 같은 경우에는 오류가 발생합니다.

  • 구분자가 일정한 간격을 유지하지 않았을 경우
removeSeparator('1,000,00') -> 0
0
  • 구분자가 두개 이상인 경우
removeSeparator('1,000.00') -> 0
0
  • 구분자가 두번 이상 연속될 경우
removeSeparator('1,,000') -> 0
0
  • 구분자로 시작하거나 끝날 경우
removeSeparator(',100,000') -> 0
0

설명

| 프로퍼티 / 메서드 | 역할 | 프로퍼티 / 파라미터 | | ----------------- | ------------------------------------------------------------------ | --------------------------------- | | RULES | 상수로 관리하는 규칙과 메시지 | MIN_LENGTH, MAX_LENGTH, ERROR_MSG | | checkValidString | 값의 초기 유효성 검증 / 빈값, 엣지케이스 등 | strOfNum | | filterString | 주어진 값을 순회하며 구분자 검증 및 숫자만 모아서 문자열로 전달 | strOfNum | | checkValidLen | 반환된 문자열이 숫자로 변환되어도 문제가 발생하지 않는 값인지 판단 | filteredStr | | passValidNumber | 주어진 값을 숫자로 변형하여 전달 | valStr | | removeSeparator | 상기 열거된 모든 기능을 통해 전달된 값을 안전한 숫자로 반환 | strOfNum |