mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-21 20:11:48 -08:00
* Split escapecss into to platforms This will reduce core size slightly * Update change note
14 lines
228 B
JavaScript
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;
|
|
})();
|