@tstsankov/yara-chops
v1.0.14
Published
A coding challenge task for YARA
Readme
YARA-chops
Chops coding challenge repo.
The package is public for ease of access https://www.npmjs.com/package/@tstsankov/yara-chops
install with
npm i @tstsankov/yara-chopsuse with:
const chops = require( '@tstsankov/yara-chops' );
chops.chop( '-2 -1 0 {{asd}} 4 5 6', { asd: '1 2 3' } );or
import { chop } from '@tstsankov/yara-chops';
const datatest = {
bread: "baguette",
cheese: "brie cheese",
};
chop("I like to eat {{bread}} and {{cheese}}", dataset);
