UNPKG

codetrix

Version:

A lightweight lodash-style utility library

7 lines (6 loc) 201 B
import { removeNonAlpha } from "../../string"; describe('removeNonAlpha', () => { it('removes non-alphabet characters', () => { expect(removeNonAlpha('a1b2c3!@#')).toBe('abc'); }); });