1.1.3 • Published 2 years ago

gap-script v1.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Gap Script

简介

gap-script 支持脚本的序列化与反序列化、行的解析等功能

用法

创建 NodeJs 项目,并安装 TypeScript

mkdir demo
cd demo
npm init -y
npm install --save-dev typescript
npm install --save-dev @types/node
tsc --init

安装 gap-script

npm install --save gap-script

在项目中使用 DocumentLineParameter 等概念

import { Document } from "gap-script";

const filename: string = "path-to-js-file.js";
let doc = new Document();
doc.open(filename);
doc.saveAs(`new-${filename}`);
1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago