mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-01-27 13:23:42 +00:00
* Split escapecss into to platforms This will reduce core size slightly * Update change note
15 lines
228 B
JavaScript
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;
|
|
})();
|