chardet/match.js

7 lines
155 B
JavaScript
Raw Normal View History

2013-03-03 20:08:00 +00:00
2013-03-04 19:47:01 +00:00
module.exports = function(det, rec, confidence, name, lang) {
this.confidence = confidence;
this.name = name || rec.name(det);
this.lang = lang;
2013-08-21 23:39:36 +00:00
};