Package Exports
- quaint-quantum-queries-lib
- quaint-quantum-queries-lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (quaint-quantum-queries-lib) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Quaint Quantum Queries
A lightweight, quantum-inspired library for intuitive data queries. Simplify your data manipulation with a touch of quantum flair.
Installation
npm install quaint-quantum-queries-libUsage
import QuaintQuantumQueries from 'quaint-quantum-queries-lib';
const data = new QuaintQuantumQueries();
// Add a record
data.addRecord({ id: 1, date: '2024-03-16', value: 'Sample' });
// Find by date
console.log(data.findByDate('2024-03-16'));
// Find by ID
console.log(data.findById(1));Features
- Add records to your dataset
- Query records by date using a simple string
- Find a specific record by ID
This project is licensed under the MIT License. See the LICENSE file for details.