-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24a017b
commit d949b64
Showing
60 changed files
with
10,175 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld Bexleyheath", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-bexleyheath/027", | ||
address: "28-70 Broadway, Bexleyheath, London, DA6 7RB, UK", | ||
geo: { lat: 51.45631788581106, lon: 0.14990942676089997 }, | ||
cinemaId: "027", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module.exports = { | ||
name: "Cineworld Enfield", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-enfield/048", | ||
address: | ||
"Southbury Leisure Centre, 208 Southbury Rd, Enfield, London, EN1 1YQ, UK", | ||
geo: { lat: 51.65037791937242, lon: -0.06085201555847656 }, | ||
cinemaId: "048", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld Feltham", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-feltham/023", | ||
address: "Leisure west, Air Park Way, Feltham, London, TW13 7LX, UK", | ||
geo: { lat: 51.443762523424645, lon: -0.4047875383180283 }, | ||
cinemaId: "023", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld Hounslow", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-hounslow/118", | ||
address: "5A Smithy Lane, Hounslow, London, TW3 1EY, UK", | ||
geo: { lat: 51.469831487446285, lon: -0.3621082309104013 }, | ||
cinemaId: "118", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld Ilford", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-ilford/060", | ||
address: "92-114 Clements Road, Ilford, London, IG1 1BP, UK", | ||
geo: { lat: 51.55816488967811, lon: 0.07463076902848469 }, | ||
cinemaId: "060", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld Leicester Square", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-leicester-square/103", | ||
address: "5-6 Leicester Square, London, WC2H 7NA, UK", | ||
geo: { lat: 51.510957471585925, lon: -0.1304760309735258 }, | ||
cinemaId: "103", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = { | ||
name: "Cineworld South Ruislip", | ||
domain: "https://www.cineworld.co.uk", | ||
url: "https://www.cineworld.co.uk/cinemas/london-south-ruislip/106", | ||
address: "The Old Dairy, Victoria Road, Ruislip, London, HA4 0EW, UK", | ||
geo: { lat: 51.55950343595646, lon: -0.40034875795272346 }, | ||
cinemaId: "106", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const attributes = require("./attributes"); | ||
const retrieve = require("./retrieve"); | ||
const transform = require("./transform"); | ||
|
||
module.exports = { | ||
attributes, | ||
retrieve, | ||
transform, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldRetrieve = require("../../common/cineworld.co.uk/retrieve"); | ||
|
||
async function retrieve() { | ||
return cineworldRetrieve(attributes); | ||
} | ||
|
||
module.exports = retrieve; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
const attributes = require("./attributes"); | ||
const cineworldTransform = require("../../common/cineworld.co.uk/transform"); | ||
|
||
async function transform(data) { | ||
return cineworldTransform(attributes, data); | ||
} | ||
|
||
module.exports = transform; |
Oops, something went wrong.