- Replaced broken .NET backend with Node.js/Express - Restored original website design with purple gradient hero - Updated homepage and shop pages with Bootstrap 5 responsive design - Disabled GitHub remote sync - all code now stored locally only - Created backup scripts and documentation - All changes saved on Ubuntu server at /var/www/SkyArtShop
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
import uuid from './dist/index.js';
|
|
export const v1 = uuid.v1;
|
|
export const v3 = uuid.v3;
|
|
export const v4 = uuid.v4;
|
|
export const v5 = uuid.v5;
|
|
export const NIL = uuid.NIL;
|
|
export const version = uuid.version;
|
|
export const validate = uuid.validate;
|
|
export const stringify = uuid.stringify;
|
|
export const parse = uuid.parse;
|