@uxbooster/utils
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@uxbooster/utils

이 패키지는 일반적으로 사용되는 유틸리티 함수들의 모음입니다.

설치

npm install @uxbooster/utils

사용법

import { isArray, isString } from '@uxbooster/utils';

console.log(isArray([])); // true
console.log(isString('hello')); // true

함수 목록

이 패키지에서 제공하는 함수 목록은 다음과 같습니다.

함수 이름 설명 예제
intersection 두 배열 간의 교집합을 계산하는 함수. intersection([1, 2, 3], [2, 3, 4]); // [2, 3]
not 두 배열 간의 차집합을 계산하는 함수. not([1, 2, 3], [2, 3, 4]); // [1]
format 문자열 내의 포맷 지정된 플레이스홀더를 대체합니다. format('Hello, {0}!', ['John']); // 'Hello, John!'
isJsonString 주어진 문자열이 JSON 형식인지 확인합니다. isJsonString('{ "key": "value" }'); // true
parseJson 주어진 문자열을 JSON 객체로 파싱합니다. parseJson('{"name": "Take", "age": 3}'); // { name: 'Take', age: 3 }
toCamelCase 문자열을 Camel case로 변환합니다. toCamelCase('hello world'); // helloWorld
toPascalCase 문자열을 Pascal case로 변환합니다. toPascalCase('hello world'); // HelloWorld
toRestfulFormat 문자열을 RESTful API에서 사용 가능한 형태로 변환합니다. toRestfulFormat('hello world'); // hello-world
toSnakeCase 문자열을 스네이크 케이스로 변환합니다. toSnakeCase('hello world'); // hello_world
getAge 주어진 생년월일(YYMMDD)로 만 나이를 계산합니다. getAge("990101"); // 25 (2024년 10월 1일 기준)
formatBytes 바이트 크기를 형식화된 문자열로 변환합니다. formatBytes(1024); // '1 KB'
getType 주어진 객체의 타입을 문자열로 반환합니다. getType('hello'); // 'String'
isArray 주어진 값이 배열인지 확인합니다. isArray([1, 2, 3]); // true
isBoolean 주어진 값이 부울형인지 확인합니다. isBoolean(true); // true
isEmpty 주어진 값이 비어 있는지 확인합니다. isEmpty(null); // true
isFunction 주어진 값이 함수인지 확인합니다. isFunction(() => {}); // true
isInt 주어진 값이 정수인지 확인합니다. isInt(123); // true
isMobileDevice 사용자가 모바일 기기에서 접속했는지 여부를 확인합니다. isMobileDevice(); // true
isNull 주어진 값이 undefined 또는 null인지 확인합니다. isNull(null); // true
isNumber 주어진 값이 숫자인지 확인합니다. isNumber(123); // true
isObject 주어진 값이 객체인지 확인합니다. isObject({}); // true
isString 주어진 값이 문자열인지 확인합니다. isString('hello'); // true
isUndefined 주어진 값이 undefined인지 확인합니다. isUndefined(undefined); // true
nvl 주어진 값이 undefined, null, 또는 빈 문자열인 경우 대체값을 반환합니다. nvl(undefined, 'default'); // 'default'
toBoolean 입력된 값을 boolean으로 변환합니다. toBoolean('true'); // true
toInt 입력된 값이 숫자로 변환 가능한지 확인하고, 가능한 경우 정수로 변환합니다. toInt('123'); // 123
toString 주어진 값의 문자열 표현을 반환합니다. toString(123); // '123'

클래스 목록

이 패키지에서 제공하는 클래스 목록은 다음과 같습니다.

  • StorageItem: 로컬 스토리지에 저장된 데이터 항목을 나타내는 클래스입니다.
  • LocalStorageWorker: 브라우저의 로컬 스토리지를 사용하여 데이터를 저장하고 관리하기 위한 클래스입니다.
  • CredentialStorage: 브라우저의 로컬 스토리지를 사용하여 사용자의 로그인 정보를 저장하고 관리하는 클래스입니다.

Readme

Keywords

Package Sidebar

Install

npm i @uxbooster/utils

Weekly Downloads

27

Version

1.0.3

License

MIT

Unpacked Size

59.9 kB

Total Files

77

Last publish

Collaborators

  • seongjin