Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ang-google-services

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ang-google-services - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

bower.json
{
"name": "ang-google-services",
"version": "1.0.3",
"version": "1.0.4",
"description": "Consuming google's APIs services",

@@ -5,0 +5,0 @@ "main": "./src/module.js",

{
"name": "ang-google-services",
"version": "1.0.3",
"version": "1.0.4",
"description": "Consuming google's APIs services",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -161,3 +161,2 @@ (function($A, $G) {

types: options['types'] || []
};

@@ -194,5 +193,5 @@

if (status == $G.maps.GeocoderStatus.OK) {
$Deffered.resolve(results);
$Deffered.resolve(results, options);
} else {
$Deffered.reject(results);
$Deffered.reject(results, options);
}

@@ -285,5 +284,5 @@

if (status == $G.maps.GeocoderStatus.OK) {
$Defer.resolve(results);
$Defer.resolve(results, options);
} else {
$Defer.reject({error: status, message: 'Failed to get the result ' + status});
$Defer.reject({error: status, message: 'Failed to get the result ' + status}, options);
}

@@ -309,8 +308,8 @@

if (status == $G.maps.GeocoderStatus.OK) {
$Defer.resolve(results);
$Defer.resolve(results, options);
} else {
$Defer.reject({
error: status,
status: status,
message: "There something wrong due to " + status
});
}, options);
}

@@ -406,5 +405,8 @@

$Summary: $Summary
});
}, options);
} else {
$Defer.reject(undefined);
$Defer.reject({
status: status,
message: "There something wrong " + status
}, options);
}

@@ -411,0 +413,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc