Upd. PicoBlog, Minesweeper; Add. 2048; Fix. CSS

This commit is contained in:
2023-03-26 18:05:22 +02:00
parent e4cdaf8e70
commit 3b296853ba
15 changed files with 797 additions and 6 deletions

View File

@ -4,6 +4,8 @@ Exp.Fs = require('fs');
// https://stackoverflow.com/a/69049676
Exp.importAll = function importAll(){ delete this.importAll; Object.assign(global, this); };
Exp.CssAllHeadings = ' h1, h2, h3, h4, h5, h6';
Exp.TryStringToList = In => {
if (typeof(In) == 'string') {
return In.split(',');