sloth-js
v0.0.9
Published
Sloth.js is a small lib created to make simple manipulations on a dataset, mostly structure arrays of objects into key-value objects.
Downloads
4
Maintainers
Readme
[WIP] sloth.js
A modern javascript library that empowers native Array's functionality with extra methods that everyone loves.
Usage
First, install the sloth
module:
npm install sloth --save
or install with yarn
yarn add sloth
API
sloth(arr, config)
Arguments:
arr
(Array):config
(Object):whitelist
(Array):blacklist
(Array):
.value
Simply retrieve the array
const arr = [1, 2, 3];
const instance = sloth(arr);
instance.value(); // [1, 2, 3]
.group(prop)
import sloth from 'sloth';
const properties = sloth([
{
id: '1',
name: 'User 1',
rating: 3,
properties: [
{ name: 'Duplex Flat', neighborhood: 'Friderichshain' },
{ name: 'Cozy Apartment', neighborhood: 'Friderichshain' }
]
},
{
id: '2',
name: 'User 2',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Lichtenberg' }]
},
{
id: '3',
name: 'User 3',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Mitte' }]
}
]);
players.group('rating');
/*
=> {
3: [
{
id: '1',
name: 'User 1',
rating: 3,
properties: [
{ name: 'Duplex Flat', neighborhood: 'Friderichshain' },
{ name: 'Cozy Apartment', neighborhood: 'Friderichshain' }
]
}
],
2: [
{
id: '2',
name: 'User 2',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Mitte' }]
},
{
id: '3',
name: 'User 3',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Mitte' }]
}
]
}
*/
group(prop, childProp) (by children)
import sloth from 'sloth';
const properties = sloth([
{
id: '1',
name: 'User 1',
rating: 3,
properties: [
{ name: 'Duplex Flat', neighborhood: 'Friderichshain' },
{ name: 'Cozy Apartment', neighborhood: 'Friderichshain' }
]
},
{
id: '2',
name: 'User 2',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Mitte' }]
},
{
id: '3',
name: 'User 3',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Mitte' }]
}
]);
players.group('properties', 'neighborhood');
/*
=> {
'Friderichshain': [
{
name: 'Duplex Flat',
neighborhood: 'Friderichshain',
parent: {
id: '1',
name: 'User 1',
rating: 3
}
}
],
'Mitte': [
{
name: 'Single Room',
neighborhood: 'Mitte'
parent: {
id: '2',
name: 'User 2',
rating: 2
}
},
{
name: 'Single Room',
neighborhood: 'Mitte'
parent: {
id: '3',
name: 'User 3',
rating: 2
}
}
]
}
*/
.toMap
import sloth from 'sloth';
const properties = sloth([
{
id: '1',
name: 'User 1',
rating: 3,
properties: [
{ name: 'Duplex Flat', neighborhood: 'Friderichshain' },
{ name: 'Cozy Apartment', neighborhood: 'Friderichshain' }
]
},
{
id: '2',
name: 'User 2',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Lichtenberg' }]
}
]);
properties.toMap('id');
/*
output:
{
1: {
id: '1',
name: 'User 1',
rating: 3,
properties: [
{ name: 'Duplex Flat', neighborhood: 'Friderichshain' },
{ name: 'Cozy Apartment', neighborhood: 'Friderichshain' }
]
},
2: {
id: '2',
name: 'User 2',
rating: 2,
properties: [{ name: 'Single Room', neighborhood: 'Lichtenberg' }]
}
};
*/
Contributing
- Fork it
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request
License
This project is licensed under the MIT License