-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1.88 KB
/
index.html
File metadata and controls
30 lines (29 loc) · 1.88 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Proxy examples</title>
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>index</h1>
<h2>Proxy examples</h2>
<ul>
<li><a href="00-basic-example.html"> 00 - Basic example of using a Proxy </a></li>
<li><a href="01-prop-defaults.html"> 01 - Default values </a></li>
<li><a href="02-private-properties.html"> 02 - Hiding private properties </a></li>
<li><a href="03-enum-basic.html"> 03 - A better enum </a></li>
<li><a href="03-enum-nameof.html"> 03 - A better enum (with a nameOf function) </a></li>
<li><a href="04-onchange-object.html"> 04 - OnChange event for objects and arrays </a></li>
<li><a href="05-cache.html"> 05 - Cache with property specific TTL </a></li>
<li><a href="06-array-in.html"> 06 - Using the "in" operator like "includes" </a></li>
<li><a href="07-singleton-pattern.html"> 07 - Singleton pattern </a></li>
<li><a href="08-revocable-validated.html"> 08 - Validation and revocable access </a></li>
<li><a href="09-cookie-object.html"> 09 - Cookie object </a></li>
<li><a href="10-python-slicing.html"> 10 - Python-like array slicing </a></li>
<li><a href="11-proxy-as-handler.html"> +1 - Proxy as a proxy handler </a></li>
<li><a href="performance.html"> Performance measurements </a></li>
</ul>
</body>
</html>