Skip to content

Commit ab770ff

Browse files
author
Daniel Haftmann
committed
still learning JS
1 parent 667136a commit ab770ff

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

AdvertisingClient.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ const Regions = {
2929

3030
module.exports = class AdvertisingClient {
3131

32-
tokenUrl;
33-
3432
constructor(options) {
3533

3634
this.options = options

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/**
22
* Module dependencies.
33
*/
4-
var Strategy = require('./strategy');
4+
var AdvertisingClient = require('./AdvertisingClient');
55

66

77
/**
88
* Expose `Strategy` directly from package.
99
*/
10-
exports = module.exports = Strategy;
10+
exports = module.exports = AdvertisingClient;
1111

1212
/**
1313
* Expose constructors.
1414
*/
15-
exports.Strategy = Strategy;
15+
exports.Class = AdvertisingClient;

0 commit comments

Comments
 (0)