市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
343 B

  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;