Viewing File: /home/ubuntu/efiexchange-node-base/node_modules/fast-stable-stringify/util/eachRecursive.js

module.exports = function eachRecursive(obj, fn, path) {
	path = path ? path + '.' : '';
	for (var name in obj) {
		if (typeof obj === "object" && obj !== null) {
			eachRecursive(obj[name], fn, path + name);
		}
		fn(obj[name], path + name);
	}
};
Back to Directory File Manager