-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.js
41 lines (33 loc) · 1.1 KB
/
example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* example.js
*
* Created by jrootham on 17/10/14.
*
* Copyright © 2014 Jim Rootham
*/
(function () {
"use strict";
var EventEmitter = require('events').EventEmitter;
var argumentSpec = require ('../argument-spec.js');
var write = function(file, data, fetch) {
var fileSpec = {
name:argumentSpec.every([argumentSpec.length(10), "[a-z]+"]) ,
extension: "jpg|gif"
};
var dataSpec = {
width: argumentSpec.range(20, 500),
height: argumentSpec.range(20, 500),
buffer: argumentSpec.instance(Buffer)
};
var errorArray = argumentSpec.validate('file', fileSpec, file);
errorArray = errorArray.concat(argumentSpec.validate('data', dataSpec, data));
errorArray = errorArray.concat(argumentSpec.validate('fetch', function(){}, fetch));
if (errorArray.length > 0) {
throw new Error(errorArray.join('\n'));
}
}
write(
{name:'abCdoeof sdjf sfdj asdf', extension:'foo'},
{size:30, width:10, buffer:new EventEmitter()},
'foo');
})()