Added Parsing to and from CSV

This commit is contained in:
Vimal-Raghubir 2018-03-25 19:49:17 -04:00
parent 2f5b0533d8
commit e069ae4991
6 changed files with 230 additions and 2 deletions

View file

@ -21,6 +21,7 @@ import PublicKeyModule from "./PublicKey.js";
import RegexModule from "./Regex.js";
import ShellcodeModule from "./Shellcode.js";
import URLModule from "./URL.js";
import CSVModule from "./CSVParser.js"
Object.assign(
OpModules,
@ -37,7 +38,8 @@ Object.assign(
PublicKeyModule,
RegexModule,
ShellcodeModule,
URLModule
URLModule,
CSVModule
);
export default OpModules;