forked from enviPath/enviPy
Current Dev State
This commit is contained in:
19
static/js/ketcher2/node_modules/ws/lib/Validation.js
generated
vendored
Normal file
19
static/js/ketcher2/node_modules/ws/lib/Validation.js
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
'use strict';
|
||||
|
||||
/*!
|
||||
* ws: a node.js websocket client
|
||||
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
||||
* MIT Licensed
|
||||
*/
|
||||
|
||||
var isValidUTF8;
|
||||
|
||||
try {
|
||||
isValidUTF8 = require('utf-8-validate');
|
||||
} catch (e) {
|
||||
isValidUTF8 = require('./Validation.fallback');
|
||||
}
|
||||
|
||||
module.exports = typeof isValidUTF8 === 'object'
|
||||
? isValidUTF8.Validation.isValidUTF8
|
||||
: isValidUTF8;
|
||||
Reference in New Issue
Block a user