How to use the token-types.INT64_LE function in token-types

To help you get started, we’ve selected a few token-types examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Borewit / music-metadata / lib / dsf / DsfChunk.ts View on Github external
get: (buf: Buffer, off: number): IDsdChunk => {
    return {
      fileSize: Token.INT64_LE.get(buf, off),
      metadataPointer: Token.INT64_LE.get(buf, off + 8)
    }
      ;
  }
};
github Borewit / music-metadata / lib / dsf / DsfChunk.ts View on Github external
get: (buf: Buffer, off: number): IDsdChunk => {
    return {
      fileSize: Token.INT64_LE.get(buf, off),
      metadataPointer: Token.INT64_LE.get(buf, off + 8)
    }
      ;
  }
};