Deprecation: #82609 - Deprecate TYPO3.Utility

See forge#82609

Description

The public property TYPO3.Utility has been marked as deprecated. Utility may be used in AMD based modules by importing TYPO3/CMS/Backend/Utility instead.

Affected Installations

All extensions using TYPO3.Utility are affected.

Migration

Import TYPO3/CMS/Backend/Utility in your AMD module.

Example code:

define(['TYPO3/CMS/Backend/Utility'], function(Utility) {
        // use Utility here
});