UNPKG

quasqui

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

20 lines (16 loc) 505 B
import { removeLeadingSlash, removeSlash, removeTailSlash, } from '../src/removeSlash'; describe('remove slash', () => { test(`should remove leading slash`, () => { expect(removeLeadingSlash('///yuck/example//')).toEqual('yuck/example//'); }); test(`should remove tail slash`, () => { expect(removeTailSlash('///yuck/example//')).toEqual('///yuck/example'); }); test(`should remove slash`, () => { expect(removeSlash('///yuck/example//')).toEqual('yuck/example'); }); });