mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-08-06 17:48:43 +08:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
|
|
module.exports = function(det, rec, confidence, name, lang) {
|
|
this.confidence = confidence;
|
|
this.name = name || rec.name(det);
|
|
this.lang = lang;
|
|
};
|