Skip to content

Instantly share code, notes, and snippets.

@amilajack
Created March 29, 2017 23:21
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 amilajack/4021adeaa4579f8f141128159f12b560 to your computer and use it in GitHub Desktop.
Save amilajack/4021adeaa4579f8f141128159f12b560 to your computer and use it in GitHub Desktop.
esnextbin sketch
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ESNextbin Sketch</title>
<!-- put additional styles and scripts here -->
</head>
<body>
<!-- put markup and other contents here -->
</body>
</html>
const some = {
databases: [
{
databaseName: 'foo',
tables: [
{
tableName: 'bar',
columns: [
'row1', 'row2', 'row3'
],
rows: [
{
columnName: 'row1',
type: Number,
value: 2
}
]
}
]
}
]
}
{
"name": "esnextbin-sketch",
"version": "0.0.0"
}
'use strict';
var some = {
databases: [{
databaseName: 'foo',
tables: [{
tableName: 'bar',
columns: ['row1', 'row2', 'row3'],
rows: [{
columnName: 'row1',
type: Number,
value: 2
}]
}]
}]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment