Initial commit: Developer Tools MVP with visual editor

- Complete React app with 7 developer tools
- JSON Tool with visual structured editor
- Serialize Tool with visual structured editor
- URL, Base64, CSV/JSON, Beautifier, Diff tools
- Responsive navigation with dropdown menu
- Dark/light mode toggle
- Mobile-responsive design with sticky header
- All tools working with copy/paste functionality
This commit is contained in:
dwindown
2025-08-02 09:31:26 +07:00
commit 7f2dd5260f
45657 changed files with 4730486 additions and 0 deletions

122
node_modules/thunky/test.js generated vendored Normal file
View File

@@ -0,0 +1,122 @@
var tape = require('tape')
var thunky = require('./')
tape('run only once', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
ran++
cb()
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
})
tape('run only once async', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
process.nextTick(function () {
ran++
cb()
})
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
run(function () {
t.same(ran, 1, 'ran once')
})
})
tape('re-run on error', function (t) {
t.plan(3)
var ran = 0
var run = thunky(function (cb) {
ran++
cb(new Error('stop'))
})
run(function () {
t.same(ran, 1, 'ran once')
run(function () {
t.same(ran, 2, 'ran once')
run(function () {
t.same(ran, 3, 'ran once')
})
})
})
})
tape('pass arguments', function (t) {
t.plan(6)
var ran = 0
var run = thunky(function (fn) {
ran++
fn({ hello: 'world' })
})
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
})
})
})
})
tape('callback is optional', function (t) {
t.plan(2)
var ran = 0
var run = thunky(function (fn) {
ran++
fn({ hello: 'world' })
})
run()
run(function (val) {
t.same(ran, 1, 'ran once')
t.same(val, { hello: 'world' })
})
})
tape('always async', function (t) {
t.plan(2)
var run = thunky(function (cb) {
process.nextTick(cb)
})
var sync = true
run(function () {
t.ok(!sync, 'not sync')
var innerSync = true
run(function () {
t.ok(!innerSync, 'not sync')
})
innerSync = false
})
sync = false
})