mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
586 B
30 lines
586 B
8 years ago
|
|
||
|
'use strict';
|
||
|
|
||
|
const _ = require('lodash');
|
||
|
|
||
|
var DEFAULT_FORCE_LIBPOSTAL = false;
|
||
|
|
||
|
// validate inputs, convert types and apply defaults
|
||
|
function sanitize( raw, clean ){
|
||
|
|
||
|
// error & warning messages
|
||
|
var messages = { errors: [], warnings: [] };
|
||
|
|
||
|
clean.force_libpostal = isTruthy(_.get(raw, 'debug:force_libpostal', false));
|
||
|
|
||
|
return messages;
|
||
|
}
|
||
|
|
||
|
// be lenient with 'truthy' values
|
||
|
function isTruthy(val) {
|
||
|
if( _.isString( val ) ){
|
||
|
return _.includes( ['true', '1', 'yes', 'y'], val );
|
||
|
}
|
||
|
|
||
|
return val === 1 || val === true;
|
||
|
}
|
||
|
|
||
|
// export function
|
||
|
module.exports = sanitize;
|