jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
19 lines (18 loc) • 579 B
JavaScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* @module helpers/normalize
*/
export const normalizeLicense = (license, count = 8) => {
const parts = [];
while (license.length) {
parts.push(license.substr(0, count));
license = license.substr(count);
}
parts[1] = parts[1].replace(/./g, '*');
parts[2] = parts[2].replace(/./g, '*');
return parts.join('-');
};