Skip to content
김태헌 edited this page Sep 26, 2024 · 7 revisions

예시 1: 배열에서 사용

import { drop } from 'mori-ts';

const result = [...drop(2, [1, 2, 3, 4, 5])];
console.log(result); // 출력: [3, 4, 5]

예시 2: 문자열에서 사용

import { drop } from 'mori-ts';

const result = [...drop(2, 'hello')];
console.log(result); // 출력: ['l', 'l', 'o']

예시 3: pipe와 함께 사용

import { pipe, toArray, drop, toAsync } from 'mori-ts';

const result = pipe(
  [1, 2, 3, 4, 5],
  drop(2),
  toArray,
);

console.log(result); // 출력: [3, 4, 5]

const result = await pipe(
  toAsync,
  [1, 2, 3, 4, 5],
  drop(2),
  toArray,
);

console.log(result); // 출력: [3, 4, 5]

테스트 코드 링크

https://github.com/gangnamssal/mori-ts/blob/main/src/test/drop.spec.ts

Clone this wiki locally