nstdlib-nightly
Version:
Node.js standard library converted to runtime-agnostic ES modules.
24 lines (20 loc) • 524 B
JavaScript
// Shimmed by nstdlib
function nop() {}
export const inspect = nop;
export const format = nop;
export const formatWithOptions = nop;
export const getStringWidth = nop;
export const stripVTControlCharacters = nop;
export const isZeroWidthCodePoint = nop;
export const identicalSequenceRange = nop;
export const inspectDefaultOptions = nop;
export default {
inspect,
format,
formatWithOptions,
getStringWidth,
stripVTControlCharacters,
isZeroWidthCodePoint,
identicalSequenceRange,
inspectDefaultOptions
};