This commit is contained in:
Pericles Alves 2019-07-09 12:09:00 -07:00
Родитель b48d0fad6d
Коммит 309d096c16
3 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -87,7 +87,7 @@ function validateMeasurements(measurements) {
* @returns true if a measurement is a location.
*/
function isLocation(measurement) {
if (typeof measurement !== 'object' || typeof measurement.lat !== 'number' || typeof measurement.lon !== 'number') {
if (!measurement || typeof measurement !== 'object' || typeof measurement.lat !== 'number' || typeof measurement.lon !== 'number') {
return false;
}

Просмотреть файл

@ -250,7 +250,7 @@ Function. You can check the integrity of the code being deployed by verifying th
of the `iotc-bridge-az-function.zip` file in the root of this repository matches the following:
```
9686CE97CD8A7C5DF71CEC11BFC1817DBC96A5D0D52C6F9068CDFA1872204DC6
EAEF80420054196F05F7D36E436BA168AF5DCD7A6E31753C8A86F71607C39312
```
# Contributing

Двоичные данные
iotc-bridge-az-function.zip

Двоичный файл не отображается.