-
-
Save slikts/cfc9ef3373e253563de2e702b1222e0e to your computer and use it in GitHub Desktop.
Non-leaky implementation of Crockford's make_sealer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Box<A> = () => A | null; | |
type Sealer<A> = { | |
seal(value: A): Box<A>; | |
unseal(box: Box<A>): A | null; | |
} | |
const makeSealer = <A>(): Sealer<A> => { | |
let open: Box<A> | null = null; | |
return { | |
seal(value: A): Box<A> { | |
const box = (): A | null => (open === box ? value : null); | |
return box; | |
}, | |
unseal(box: Box<A>): A | null { | |
open = box; | |
const result = box(); | |
open = null; | |
return result; | |
}, | |
}; | |
}; | |
const s = makeSealer(); | |
const o = { a: 1 }; | |
const box = s.seal(o); | |
console.log(s.unseal(box)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://www.crockford.com/javascript/encyclopedia/I.html#indexOf