- 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
18 lines
551 B
JavaScript
18 lines
551 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isMultibyte;
|
|
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
/* eslint-disable no-control-regex */
|
|
var multibyte = /[^\x00-\x7F]/;
|
|
/* eslint-enable no-control-regex */
|
|
|
|
function isMultibyte(str) {
|
|
(0, _assertString.default)(str);
|
|
return multibyte.test(str);
|
|
}
|
|
module.exports = exports.default;
|
|
module.exports.default = exports.default; |