UNPKG

@wezom/type-guards

Version:

Simple TypeScript type guards

4 lines (3 loc) 109 B
export const isNotEmptyString = (sample) => { return typeof sample === 'string' && sample.length > 0; };