chardet/match.js

7 lines
173 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) {
2013-03-03 20:08:00 +00:00
this.confidence = confidence;
2013-05-02 01:37:32 +00:00
this.name = name || rec.name(det);
2013-08-21 23:39:36 +00:00
this.lang = lang;
};