UNPKG

pws-formula

Version:

This is a formula execute the string or buffer format formula libray to get values from string or buffer.

25 lines (24 loc) 689 B
/** * Project: pws-formula * Created Date: Friday, May 4th 2018, 11:06:37 am * Author: Thomas.Li * E-Mail: leeyinghui@hotmail.com * Intro: interface of the module * ----- * Last Modified: Fri May 04 2018 * Modified By: Thomas.Li * ----- * Copyright (c) 2018 pareact * ------------------------------------ * Always bet on Javascript! */ const buffer = require('./lib/buffer'); const str = require('./lib/str'); module.exports = { getBuffValue: buffer.getBuffValue, verifyBuffer: buffer.verifyBuffer, getFullBuffer: buffer.getFullBuffer, getStringValue: str.getStringValue, verifyString: str.verifyString, getFullString: str.getFullString, }