UNPKG

clientjs

Version:

Device information and digital fingerprinting written in pure JavaScript.

15 lines (10 loc) 356 B
'use strict'; var inherits = require('inherits'); var ClientJS = require('./client.base').ClientJS; var getFlashVersion = require('./modules/flash-detection'); function ClientJSFlash() { ClientJS.apply(this, arguments); } inherits(ClientJSFlash, ClientJS); ClientJSFlash.prototype.getFlashVersion = getFlashVersion; exports.ClientJS = ClientJSFlash;