-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from geodatagouv/tusbar/modernize
Modernize wfs-client
- Loading branch information
Showing
13 changed files
with
3,545 additions
and
1,630 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
language: node_js | ||
node_js: | ||
- "0.10" | ||
before_install: npm install -g grunt-cli | ||
- 8 |
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 |
---|---|---|
@@ -1,18 +1,16 @@ | ||
/* | ||
** Module dependencies | ||
*/ | ||
const Client = require('./lib/client'); | ||
|
||
const Client = require('./lib/client') | ||
|
||
/* | ||
** Methods | ||
*/ | ||
function wfs(url, options) { | ||
return new Client(url, options); | ||
return new Client(url, options) | ||
} | ||
|
||
|
||
/* | ||
** Exports | ||
*/ | ||
module.exports = wfs; | ||
module.exports = wfs |
Oops, something went wrong.