StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/static-module/node_modules/object-keys
Angelos Chatzimparmpas f521a3509d paper-version 5 years ago
..
test paper-version 5 years ago
.npmignore paper-version 5 years ago
.travis.yml paper-version 5 years ago
README.md paper-version 5 years ago
foreach.js paper-version 5 years ago
index.js paper-version 5 years ago
isArguments.js paper-version 5 years ago
package.json paper-version 5 years ago
shim.js paper-version 5 years ago

README.md

#object-keys Version Badge

Build Status dependency status

browser support

An Object.keys shim. Uses Object.keys if available.

Example

var keys = require('object-keys');
var assert = require('assert');
var obj = {
	a: true,
	b: true,
	c: true
};

assert.equal(keys(obj), ['a', 'b', 'c']);

Source

Implementation taken directly from es5-shim, with modifications, including from lodash.

Tests

Simply clone the repo, npm install, and run npm test