-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathutils.js
More file actions
40 lines (31 loc) · 835 Bytes
/
utils.js
File metadata and controls
40 lines (31 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const { isArray } = Array;
const { assign, defineProperties, entries, freeze, keys } = Object;
export { assign, defineProperties, entries, freeze, isArray, keys };
/* c8 ignore start */
const { replace } = '';
const ca = /[&<>"']/g;
const pe = c => {
switch (c) {
case '&': return '&';
case '<': return '<';
case '>': return '>';
case '"': return '"';
default: return ''';
}
};
export const escape = es => replace.call(es, ca, pe);
export class Unsafe {
#data;
constructor(data) {
this.#data = data;
}
valueOf() {
return this.#data;
}
toString() {
return String(this.#data);
}
}
export const unsafe = data => new Unsafe(data);
export const createComment = value => document.createComment(value);
/* c8 ignore stop */