Files
codeql-action/node_modules/adm-zip/util/decoder.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
130 B
JavaScript
Raw Normal View History

2024-08-12 11:04:43 -07:00
module.exports = {
efs: true,
encode: (data) => Buffer.from(data, "utf8"),
decode: (data) => data.toString("utf8")
};