Updated ASet & Path Events
This commit is contained in:
18
index.html
Normal file
18
index.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!Doctype html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>@ztimson/utils sandbox</title>
|
||||
</head>
|
||||
<body>
|
||||
<script type="module">
|
||||
import {PathEvent, PE} from './dist/index.mjs';
|
||||
|
||||
const test = PathEvent.combine(PE`storage:n`);
|
||||
debugger;
|
||||
console.log(test.methods.indexOf('n'));
|
||||
test.methods.delete('n').add('c');
|
||||
console.log(test);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user