1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2026-01-27 13:23:42 +00:00
Files
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

15 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;
})();