All files / src strings.ts

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 8217x                                                                                                                                                                 17x
export const strings = {
  UUID_VERSION_INVALID:
    'The version argument was not a valid UUID version.',
 
  HASH_ARGUMENT_MISSING:
  'The hash argument was not provided, without which a v3 or v5 UUID ' +
  'cannot be created.',
 
  TIMESTAMP_GENERATION_FAILED:
    'The random number generator did not produce an acceptable value for ' +
    'the random number used in place of a stable timestamp.',
 
  TIMESTAMP_INVALID:
    'The timestamp property of the UUID object is malformed.',
 
  NAMESPACE_ID_MISSING:
    'In order to construct a v3 or v5 UUID, you need to provide a ' +
    'namespace ID to be hashed.',
 
  NAME_MISSING:
    'In order to construct a v3 or v5 UUID, you need to provide a ' +
    'name to be hashed.',
 
  CLOCK_SEQUENCE_INVALID:
    'The clockSequence property of the UUID object is malformed.',
 
  CLOCK_SEQUENCE_GENERATION_FAILED:
    'The random number generator did not produce an acceptable value for ' +
    'the random number used in place of a stable clock sequence.',
 
  CLOCK_SEQUENCE_LOW_INVALID:
    'The clockSequenceLow property of the UUID object is malformed.',
 
  CLOCK_SEQUENCE_HIGH_INVALID:
    'The clockSequenceHigh property of the UUID object is malformed.',
 
  CLOCK_HIGH_AND_RESERVED_INVALID:
    'The clockSequenceHighAndReserved property of the UUID object is ' +
    'malformed.',
 
  MAC_ADDRESS_UNAVAILABLE:
    'The MAC address is unavailable, which makes creating the version 1 ' +
    'node ID impossible.',
 
  MAC_ADDRESS_INVALID:
    'The MAC address was found, but it was malformed.',
 
  UUID_LAST_RESULTS_INVALID:
    'The provided last results object did not meet the isValidLastResults ' +
    'type guard.',
 
  UUID_STRING_INVALID:
    'The text argument passed to UUID.parse was malformed.',
 
  UUID_OPTIONS_INVALID:
    'The options argument passed to one of the UUID methods did not meet ' +
    'the isUUIDOptions type guard.',
 
  TIME_LOW_INVALID:
    'The timestamp property did not produce a valid low portion of the ' +
    'timestamp.',
 
  TIME_MID_INVALID:
    'The timestamp property did not produce a valid mid portion of the ' +
    'timestamp.',
 
  TIME_HIGH_INVALID:
    'The timestamp property did not produce a valid high portion of the ' +
    'timestamp.',
  
  TIME_HIGH_AND_VERSION_INVALID:
    'The timestamp property did not produce a valid high-and-version ' +
    'multiplex.',
 
  NODE_IDENTIFIER_INVALID:
    'The nodeIdentifier property of the UUID object was malformed.',
 
  VERSION_1_IN_BROWSER:
    'Version 1 UUIDs cannot be constructed in the browser.',
};
 
export default strings;