https://github.com/edgardleal/thanos-for-data
A Thanos implementation to restore the balance of your data
https://github.com/edgardleal/thanos-for-data
data tests
Last synced: about 1 year ago
JSON representation
A Thanos implementation to restore the balance of your data
- Host: GitHub
- URL: https://github.com/edgardleal/thanos-for-data
- Owner: edgardleal
- License: mit
- Created: 2021-01-07T13:07:53.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-07T22:07:50.000Z (over 5 years ago)
- Last Synced: 2025-06-04T02:56:32.195Z (about 1 year ago)
- Topics: data, tests
- Language: TypeScript
- Homepage:
- Size: 96.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Thanos for Data

This library will remove the half of properties on a given object.
## Purpose
This library was created for test purpose.
With Thanos For Data, you can validate your tests to check if your code
is ready do deal with incomplete payload.
## Usage
```js
import thanos from 'thanos-for-data';
const myData = {
name: 'Test',
phone: '1234567',
account: 1234,
status: true,
};
const result = thanos(myData);
console.log(result);
```
output:
```shell
{
phone: '1234567',
status: true,
}
```