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
// This is a rough port of their TodoMVC app, using their Hooks API | |
import React, { useRef, useState, useEffect, useMemo } from "react" | |
import { render } from "react-dom" | |
function uuid() { | |
let uuid = "" | |
for (let i = 0; i < 32; i++) { | |
if (i === 8 || i === 12 || i === 16 || i === 20) uuid += "-" |
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
var Module = require("module") | |
function requireUncached(file, baseDir) { | |
// Hack: hijack Node's internal resolution algorithm to require the file | |
// as if from a fake module in the correct base directory. It also will | |
// avoid several bugs with the `resolve` module (Node's is necessarily | |
// more stable). | |
var dirname = path.resolve(baseDir) | |
var m = new Module(path.join(dirname, "dummy.js")) |
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
function removeNodeFromDOM(vnode) { | |
var parent = vnode.dom.parentNode | |
if (parent != null) { | |
var count = vnode.domSize | |
if (count != null && count > 1) { | |
while (--count) parent.removeChild(vnode.dom.nextSibling) | |
} | |
parent.removeChild(vnode.dom) | |
} | |
} |
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
const _wmSymbol = Symbol.private("wmSymbol") | |
const _wsSymbol = Symbol.private("wsSymbol") | |
const call = Function.call.bind(Function.call) | |
const hasOwn = Function.call.bind({}.hasOwnProperty) | |
const getOwn = Object.getOwnPropertyDescriptor | |
const TE = TypeError | |
const checkMapThisKey = makeChecker("WeakMap", "weak map", _wmSymbol) | |
const checkSetThisKey = makeChecker("WeakSet", "weak set", _wsSymbol) | |
function makeChecker(name, human, symbol) { |
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
// A complete set of type defs for Fantasy Land | |
interface Setoid { | |
"fantasy-land/equals"(other: this): boolean; | |
} | |
interface Ord { | |
"fantasy-land/lte"(other: this): boolean; | |
} | |
interface Semigroupoid<A, B> { |
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
// Copyright Joyent, Inc. and other Node contributors. | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a | |
// copy of this software and associated documentation files (the | |
// "Software"), to deal in the Software without restriction, including | |
// without limitation the rights to use, copy, modify, merge, publish, | |
// distribute, sublicense, and/or sell copies of the Software, and to permit | |
// persons to whom the Software is furnished to do so, subject to the | |
// following conditions: | |
// |
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
Promise.newCapability = Promise.newCapability || (() => { | |
const data = new WeakMap() | |
const getData = data.get.bind(data) | |
const setData = data.set.bind(data) | |
const objectCreate = Object.create | |
function invokeResolver(inst, index, value) { | |
const data = getData(inst) | |
if (data == null) throw new TypeError() | |
const func = data[index] |
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
// mithril/route.js | |
"use strict" | |
var redrawService = require("./redraw") | |
var register = require("./router/register")(window) | |
module.exports = require("./router/router")(redrawService, register) |
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
/** | |
* This tiny wrapper file checks for known node flags and appends them | |
* when found, before invoking the "real" _babel-node(1) executable. | |
*/ | |
import getV8Flags from "v8flags"; | |
import path from "path"; | |
getV8Flags(function(err, v8Flags) { | |
if (err != null) throw err; |
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
// This holds all the real state | |
class CancelController { | |
constructor(init) { | |
this._canceled = false | |
this._token = undefined | |
this._promise = undefined | |
this._cancels = undefined | |
this._resolve = undefined | |
} |