mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-03-20 15:19:06 +01:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
|
|
module.exports = function(det, rec, confidence, name, lang) {
|
|
this.confidence = confidence;
|
|
this.name = name || rec.name(det);
|
|
this.lang = lang;
|
|
};
|