UNPKG

@csound/browser

Version:

[![npm (scoped with tag)](https://shields.shivering-isles.com/npm/v/@csound/browser/latest)](https://www.npmjs.com/package/@csound/browser) [![GitHub Workflow Status](https://shields.shivering-isles.com/github/workflow/status/csound/csound/csound_wasm)](h

9 lines (8 loc) 184 B
export const trimNull = (a) => { const c = a.indexOf("\0"); if (c > -1) { // eslint-disable-next-line unicorn/prefer-string-slice return a.substr(0, c); } return a; };