1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/tools/licenses/utils/matchMit.ts
Henry Heino 02bdb7a79c
Docs: Include dependency overview (#10911)
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
2024-08-22 21:53:27 +01:00

28 lines
944 B
TypeScript

import mit from '../licenseText/mit';
import equalIgnoringSpacing from './equalIgnoringSpacing';
const matchMit = (licenseText: string) => {
licenseText = licenseText.trim();
// Match headers similar to "MIT License" and "(The MIT License)"
const headerRegex = /^.?(?:The )?(?:MIT License)?(?: .MIT.)?.?[\r\n \t]+/;
licenseText = licenseText.replace(headerRegex, '');
const baseMitLicense = mit('[[copyright here]]').trim().replace(headerRegex, '');
const copyrightRegex = /^(Copyright .*)[\n]/i;
const baseLicenseWithoutCopyright = baseMitLicense.replace(copyrightRegex, '');
const testLicenseTextWithoutCopyright = licenseText.replace(copyrightRegex, '');
const copyrightMatch = copyrightRegex.exec(licenseText);
if (copyrightMatch && equalIgnoringSpacing(baseLicenseWithoutCopyright, testLicenseTextWithoutCopyright)) {
return {
copyright: copyrightMatch[1],
};
} else {
return null;
}
};
export default matchMit;