utils.js 343 B

1234567891011
  1. export const identity = value => value;
  2. export const noop = () => undefined;
  3. export const getContentsProperty = ({contents}) => contents;
  4. export const throwObjectStream = chunk => {
  5. throw new Error(`Streams in object mode are not supported: ${String(chunk)}`);
  6. };
  7. export const getLengthProperty = convertedChunk => convertedChunk.length;