- 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
16 lines
590 B
JavaScript
16 lines
590 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = isVariableWidth;
|
|
var _assertString = _interopRequireDefault(require("./util/assertString"));
|
|
var _isFullWidth = require("./isFullWidth");
|
|
var _isHalfWidth = require("./isHalfWidth");
|
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
function isVariableWidth(str) {
|
|
(0, _assertString.default)(str);
|
|
return _isFullWidth.fullWidth.test(str) && _isHalfWidth.halfWidth.test(str);
|
|
}
|
|
module.exports = exports.default;
|
|
module.exports.default = exports.default; |