Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

wrapper.mjs 323B

12345678910
  1. import uuid from './dist/index.js';
  2. export const v1 = uuid.v1;
  3. export const v3 = uuid.v3;
  4. export const v4 = uuid.v4;
  5. export const v5 = uuid.v5;
  6. export const NIL = uuid.NIL;
  7. export const version = uuid.version;
  8. export const validate = uuid.validate;
  9. export const stringify = uuid.stringify;
  10. export const parse = uuid.parse;