JSFiddle - React, Tailwind, and code Playground
by mLuby
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.6.0/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/chai/1.9.1/chai.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/sinon.js/1.7.3/sinon-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/mocha/1.0.2/"></script>
<script src="lib/jquery.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/mocha/mocha.js"></script>
<script src="lib/chai/chai.js"></script>
<script src="lib/sinon/sinon.js"></script>
<script>
mocha.setup('bdd');
var expect = chai.expect;
$(mocha.run);
</script>
<script src="src/getElementsByClassName.js"></script>
<script src="src/stringifyJSON.js"></script>
<script src="src/parseJSON.js"></script>
<script src="spec/getElementsByClassNameSpec.js"></script>
<script src="spec/fixtures.js"></script>
<script src="spec/stringifyJSONSpec.js"></script>
<script src="spec/parseJSONSpec.js"></script>
<div id="mocha"></div>
CSS
@charset "utf-8";
body {
font: 20px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 60px 50px;
}
#mocha ul, #mocha li {
margin: 0;
padding: 0;
}
#mocha ul {
list-style: none;
}
#mocha h1, #mocha h2 {
margin: 0;
}
#mocha h1 {
margin-top: 15px;
font-size: 1em;
font-weight: 200;
}
#mocha h1 a {
text-decoration: none;
color: inherit;
}
#mocha h1 a:hover {
text-decoration: underline;
}
#mocha .suite .suite h1 {
margin-top: 0;
font-size: .8em;
}
.hidden {
display: none;
}
#mocha h2 {
font-size: 12px;
font-weight: normal;
cursor: pointer;
}
#mocha .suite {
margin-left: 15px;
}
#mocha .test {
margin-left: 15px;
overflow: hidden;
}
#mocha .test.pending:hover h2::after {
content: '(pending)';
font-family: arial;
}
#mocha .test.pass.medium .duration {
background: #C09853;
}
#mocha .test.pass.slow .duration {
background: #B94A48;
}
#mocha .test.pass::before {
content: '✓';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #00d6b2;
}
#mocha .test.pass .duration {
font-size: 9px;
margin-left: 5px;
padding: 2px 5px;
color: white;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
box-shadow: inset 0 1px 1px rgba(0,0,0,.2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
#mocha .test.pass.fast .duration {
display: none;
}
#mocha .test.pending {
color: #0b97c4;
}
#mocha .test.pending::before {
content: '◦';
color: #0b97c4;
}
#mocha .test.fail {
color: #c00;
}
#mocha .test.fail pre {
color: black;
}
#mocha .test.fail::before {
content: '✖';
font-size: 12px;
display: block;
float: left;
margin-right: 5px;
color: #c00;
}
#mocha .test pre.error {
color: #c00;
max-height: 300px;
overflow: auto;
}
#mocha .test pre {
display: block;
float: left;
clear: left;
font: 12px/1.5 monaco,...
JavaScript
// this is what you would do if you liked things to be easy:
// var stringifyJSON = JSON.stringify;
// but you don't so you're going to write it from scratch:
var stringifyJSON = function(obj) {
// your code goes here
};
////////////////////FIXTURES
var stringifiableValues = [
9,
null,
true,
false,
"Hello world",
[],
[8],
["hi"],
[8, "hi"],
[1, 0, -1, -0.3, 0.3, 1343.32, 3345, 0.00011999999999999999],
[8, [[],3,4]],
[[[["foo"]]]],
{},
{"a": "apple"},
{"foo": true, "bar": false, "baz": null},
{"boolean, true": true, "boolean, false": false, "null": null },
// basic nesting
{"a":{"b":"c"}},
{"a":["b", "c"]},
[{"a":"b"}, {"c":"d"}],
{"a":[],"c": {}, "b": true}
];
var stringifiableObjects = [
9,
null,
true,
false,
"Hello world",
[],
[8],
["hi"],
[8, "hi"],
[1, 0, -1, -0.3, 0.3, 1343.32, 3345, 0.00011999999999999999],
[8, [[],3,4]],
[[[["foo"]]]],
{},
{"a": "apple"},
{"foo": true, "bar": false, "baz": null},
{"boolean, true": true, "boolean, false": false, "null": null },
// basic nesting
{"a":{"b":"c"}},
{"a":["b", "c"]},
[{"a":"b"}, {"c":"d"}],
{"a":[],"c": {}, "b": true}
];
// used for stringifyJSON spec
// hint: JSON does not allow you to stringify functions or
// undefined values, so you should skip those key/value pairs.
unstringifiableValues = [
{
'functions': function(){},
'undefined': undefined
}
];
parseableStrings = [
// basic stuff
'[]',
'{"foo": ""}',
'{}',
'{"foo": "bar"}',
'["one", "two"]',
'{"a": "b", "c": "d"}',
'[null,false,true]',
'{"foo": true, "bar": false, "baz": null}',
'[1, 0, -1, -0.3, 0.3, 1343.32, 3345, 0.00011999999999999999]',
'{"boolean, true": true, "boolean, false": false, "null": null }',
// basic nesting
'{"a":{"b":"c"}}',
'{"a":["b", "c"]}',
'[{"a":"b"}, {"c":"d"}]',
'{"a":[],"c": {}, "b": true}',
'[[[["foo"]]]]',
// escaping
'["\\\\\\"\\"a\\""]',
'["and you can\'t escape thi\s"]',
//...