All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.test.obj.js Maven / Gradle / Ivy

The newest version!
'use strict';

var test = require('tape');
var traverse = require('../');

test('traverse an object with nested functions', function (t) {
	t.plan(1);

	function Cons(x) {
		t.equal(x, 10);
	}
	traverse(new Cons(10));
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy