Skip to content

Instantly share code, notes, and snippets.

@TylorS
Created June 6, 2017 19:48
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 TylorS/bed4ce5474b825ba17f54ed99f918afe to your computer and use it in GitHub Desktop.
Save TylorS/bed4ce5474b825ba17f54ed99f918afe 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>
import { insert } from '167'
const list = [ 1, 2, 3, 4 ]
console.log(insert(2, 'x', list))
{
"name": "esnextbin-sketch",
"version": "0.0.0",
"dependencies": {
"167": "0.7.0"
}
}
'use strict';
var _ = require('167');
var list = [1, 2, 3, 4];
console.log((0, _.insert)(2, 'x', list));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment