Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created March 30, 2019 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/5c1a5a0252c3851fc22bb95f3da0b117 to your computer and use it in GitHub Desktop.
Save dance2die/5c1a5a0252c3851fc22bb95f3da0b117 to your computer and use it in GitHub Desktop.
class TrieUsingArrow {
has = word => true;
}
// Transpiled by TypeScript as
var TrieUsingArrow = /** @class */ (function () {
function TrieUsingArrow() {
this.has = function (word) { return true; };
}
return TrieUsingArrow;
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment