mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-03-29 11:01:29 +00:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
/*\
|
|
title: $:/core/modules/utils/escapecss.js
|
|
type: application/javascript
|
|
module-type: utils-browser
|
|
\*/
|
|
|
|
"use strict";
|
|
|
|
exports.escapeCSS = (function() {
|
|
return window.CSS.escape;
|
|
})();
|