@hclsoftware/secagent
Version:
IAST agent
23 lines (18 loc) • 608 B
JavaScript
//IASTIGNORE
/*
* ****************************************************
* Licensed Materials - Property of HCL.
* (c) Copyright HCL Technologies Ltd. 2017, 2025.
* Note to U.S. Government Users *Restricted Rights.
* ****************************************************
*/
Type = Object.freeze({ Os: "Os", Server: "Server", Language: "Language", Library: "Library" })
class Component {
constructor(name, version, type) {
this.name = name
this.version = version
this.type = type
}
}
module.exports.Component = Component
module.exports.Type = Type