evrythng-scan
Version:
Plugin for evrythng.js that adds Barcode, QR code, Image Recognition and OCR scanning to applications.
20 lines (18 loc) • 577 B
JavaScript
(function (root, factory) {
/* global define */
if (typeof define === 'function' && define.amd) {
define(['evrythng', 'evrythng-scan'], factory)
} else if (typeof module === 'object' && module.exports) {
factory(require('evrythng'), require('../../dist/evrythng-scan'))
} else {
factory(root.EVT, root.EVTScan)
}
}(this, function factory (EVT, EVTScan) {
/* eslint-env jasmine */
describe('EVTScan Distribution', () => {
it('should exist', () => {
expect(EVTScan).toBeDefined()
expect(EVT.Operator.scan).toBeDefined()
})
})
}))