ESM: Added remaining ByteRepr operations.

This commit is contained in:
n1474335 2018-05-06 13:18:41 +01:00
parent 1f877817f4
commit be61419b80
11 changed files with 707 additions and 0 deletions

17
src/core/lib/Delim.mjs Normal file
View file

@ -0,0 +1,17 @@
/**
* Various delimiters
*
* @author n1474335 [n1474335@gmail.com]
* @copyright Crown Copyright 2018
* @license Apache-2.0
*/
/**
* Generic sequence delimiters.
*/
export const DELIM_OPTIONS = ["Space", "Comma", "Semi-colon", "Colon", "Line feed", "CRLF"];
/**
* Binary sequence delimiters.
*/
export const BIN_DELIM_OPTIONS = ["Space", "Comma", "Semi-colon", "Colon", "Line feed", "CRLF", "None"];