webgme-engine
Version:
WebGME server and Client API without a GUI
18 lines (15 loc) • 375 B
JavaScript
/*globals define*/
/*eslint-env node, browser*/
/**
* Client module for accessing the blob.
*
* @author lattmann / https://github.com/lattmann
*/
define([], function () {
'use strict';
var BlobConfig = {
hashMethod: 'sha1', // TODO: in the future we may switch to sha512
hashRegex: new RegExp('^[0-9a-f]{40}$')
};
return BlobConfig;
});