jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
25 lines (24 loc) • 815 B
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module plugins/image-properties
*/
import { isNumber } from "../../../core/helpers/checker/is-number.js";
import { trim } from "../../../core/helpers/string/trim.js";
/** @private */
export const normalSizeFromString = (value) => {
return /^[-+]?[0-9.]+(px)?$/.test(value.toString())
? parseFloat(value.toString())
: value;
};
/** @private */
export const normalSizeToString = (value) => {
if (isNumber(value)) {
return value ? value + 'px' : value.toString();
}
value = trim(value);
return /^[0-9]+$/.test(value) ? value + 'px' : value;
};