mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-12 01:33:31 -07:00
11 lines
189 B
JavaScript
11 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;
|
|
})();
|