TiddlyWiki5/core/modules/utils/escapecss.js
XLBilly e42ed6808e
Split escapecss into two platforms (#9475)
* Split escapecss into to platforms

This will reduce core size slightly

* Update change note
2026-01-20 12:13:48 +01:00

14 lines
228 B
JavaScript

/*\
title: $:/core/modules/utils/escapecss.js
type: application/javascript
module-type: utils-browser
Provides CSS.escape() functionality.
\*/
"use strict";
exports.escapeCSS = (function() {
return window.CSS.escape;
})();