UNPKG

@ryusei/light

Version:

<div align="center"> <a href="https://light.ryuseijs.com"> <img alt="RyuseiLight" src="https://light.ryuseijs.com/images/svg/logo.svg" width="70"> </a>

10 lines (7 loc) 275 B
import { startsWith } from './startsWith'; describe( 'startsWith', () => { test( 'can check if the string starts with the provided character.', () => { expect( startsWith( 'abc', 'a' ) ).toBe( true ); expect( startsWith( 'abc', 'b' ) ).toBe( false ); } ); } );