mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-25 03:14:46 +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;
|
|
};
|