forked from d3noob's block: Directional Force Layout Diagram with varying link opacity
This file contains hidden or 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 typed = require("typed-function"); | |
typed.addType({ | |
name: 'zero', | |
test: function (x) { return x === 0; } | |
}); | |
typed.addType({ | |
name: 'one', | |
test: function (x) { return x === 1; } |
This file contains hidden or 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 typed = require("typed-function"); | |
typed.addType({ | |
name: 'zero', | |
test: function (x) { return x === 0; } | |
}); | |
typed.addType({ | |
name: 'one', | |
test: function (x) { return x === 1; } |
This file contains hidden or 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 typed = require("typed-function"); | |
typed.addType({ | |
name: 'zero', | |
test: function (x) { return x === 0; } | |
}); | |
typed.addType({ | |
name: 'one', | |
test: function (x) { return x === 1; } |
This file contains hidden or 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
"use strict"; | |
var Decimal = require("decimal.js"); | |
var x = new Decimal(-5); | |
console.log(x, x.isNeg()); // prints Decimal {s: -1, e: 0, d: Array[1]} true | |
x.cos(); // should not alter x | |
console.log(x, x.isNeg()); // prints Decimal {s: 1, e: 0, d: Array[1]} false |
This file contains hidden or 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
System.config({ | |
baseURL: "/", | |
defaultJSExtensions: true, | |
transpiler: false, | |
paths: { | |
"twitter": "//platform.twitter.com/widgets.js" // must be a path, map will cause an error when bundling (May change in SystemJS Builder v0.15) | |
}, | |
meta: { | |
"twitter": { |
This file contains hidden or 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
jspm_packages |
This file contains hidden or 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
jspm_packages |
This file contains hidden or 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
<!doctype html> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="https://cdn.rawgit.com/martine/webtreemap/a5c3115092f3ce97c6544aff4af465a88010f01d/webtreemap.css"> | |
<title>dist/plotly.js - Source Map Explorer</title> | |
<style> | |
html, body { | |
height: 100%; | |
} |
This file contains hidden or 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
node_modules |