Method: Nps::Utils.check_sanitize_array
- Defined in:
- lib/nps/utils.rb
.check_sanitize_array(params, nodo, file) ⇒ Object
103 104 105 106 107 108 |
# File 'lib/nps/utils.rb', line 103 def self.check_sanitize_array(params, nodo, file) result_params = [] params.each { |x| result_params.push(check_sanitize(x, false, nodo, file)) } return result_params end |