@turf/flip 6.5.0 → 7.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,13 +6,14 @@
6
6
 
7
7
  Takes input features and flips all of their coordinates from `[x, y]` to `[y, x]`.
8
8
 
9
- **Parameters**
9
+ ### Parameters
10
10
 
11
- - `geojson` **[GeoJSON][1]** input features
12
- - `options` **[Object][2]** Optional parameters (optional, default `{}`)
13
- - `options.mutate` **[boolean][3]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)
11
+ * `geojson` **[GeoJSON][1]** input features
12
+ * `options` **[Object][2]** Optional parameters (optional, default `{}`)
14
13
 
15
- **Examples**
14
+ * `options.mutate` **[boolean][3]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`)
15
+
16
+ ### Examples
16
17
 
17
18
  ```javascript
18
19
  var serbia = turf.point([20.566406, 43.421008]);
package/dist/es/index.js CHANGED
File without changes
package/dist/js/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/flip",
3
- "version": "6.5.0",
3
+ "version": "7.0.0-alpha.0",
4
4
  "description": "turf flip module",
5
5
  "author": "Turf Authors",
6
6
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  "docs": "node ../../scripts/generate-readmes",
44
44
  "test": "npm-run-all test:*",
45
45
  "test:tape": "node -r esm test.js",
46
- "test:types": "tsc --esModuleInterop --noEmit types.ts"
46
+ "test:types": "tsc --esModuleInterop --noEmit --strict types.ts"
47
47
  },
48
48
  "devDependencies": {
49
49
  "benchmark": "*",
@@ -54,9 +54,9 @@
54
54
  "write-json-file": "*"
55
55
  },
56
56
  "dependencies": {
57
- "@turf/clone": "^6.5.0",
58
- "@turf/helpers": "^6.5.0",
59
- "@turf/meta": "^6.5.0"
57
+ "@turf/clone": "^7.0.0-alpha.0",
58
+ "@turf/helpers": "^7.0.0-alpha.0",
59
+ "@turf/meta": "^7.0.0-alpha.0"
60
60
  },
61
- "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
61
+ "gitHead": "0edc4c491b999e5ace770a61e1cf549f7c004189"
62
62
  }