@turf/combine 7.1.0-alpha.7 → 7.1.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.
Files changed (2) hide show
  1. package/README.md +2 -16
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -9,7 +9,7 @@ into [MultiPoint][5], [MultiLineString][6], or [MultiPolygon][7] features.
9
9
 
10
10
  ### Parameters
11
11
 
12
- * `fc` **[FeatureCollection][8]<([Point][9] | [LineString][10] | [Polygon][11])>** a FeatureCollection of any type
12
+ * `fc` **[FeatureCollection][1]<([Point][2] | [LineString][3] | [Polygon][4])>** a FeatureCollection of any type
13
13
 
14
14
  ### Examples
15
15
 
@@ -25,7 +25,7 @@ var combined = turf.combine(fc);
25
25
  var addToMap = [combined]
26
26
  ```
27
27
 
28
- Returns **[FeatureCollection][8]<([MultiPoint][12] | [MultiLineString][13] | [MultiPolygon][14])>** a FeatureCollection of corresponding type to input
28
+ Returns **[FeatureCollection][1]<([MultiPoint][5] | [MultiLineString][6] | [MultiPolygon][7])>** a FeatureCollection of corresponding type to input
29
29
 
30
30
  [1]: https://tools.ietf.org/html/rfc7946#section-3.3
31
31
 
@@ -41,20 +41,6 @@ Returns **[FeatureCollection][8]<([MultiPoint][12] | [MultiLineString][13] | [Mu
41
41
 
42
42
  [7]: https://tools.ietf.org/html/rfc7946#section-3.1.7
43
43
 
44
- [8]: https://tools.ietf.org/html/rfc7946#section-3.3
45
-
46
- [9]: https://tools.ietf.org/html/rfc7946#section-3.1.2
47
-
48
- [10]: https://tools.ietf.org/html/rfc7946#section-3.1.4
49
-
50
- [11]: https://tools.ietf.org/html/rfc7946#section-3.1.6
51
-
52
- [12]: https://tools.ietf.org/html/rfc7946#section-3.1.3
53
-
54
- [13]: https://tools.ietf.org/html/rfc7946#section-3.1.5
55
-
56
- [14]: https://tools.ietf.org/html/rfc7946#section-3.1.7
57
-
58
44
  <!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run "yarn docs" from the root of the turf project. -->
59
45
 
60
46
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/combine",
3
- "version": "7.1.0-alpha.7+0ce6ecca0",
3
+ "version": "7.1.0",
4
4
  "description": "turf combine module",
5
5
  "author": "Turf Authors",
6
6
  "license": "MIT",
@@ -62,9 +62,10 @@
62
62
  "typescript": "^5.2.2"
63
63
  },
64
64
  "dependencies": {
65
- "@turf/helpers": "^7.1.0-alpha.7+0ce6ecca0",
66
- "@turf/meta": "^7.1.0-alpha.7+0ce6ecca0",
65
+ "@turf/helpers": "^7.1.0",
66
+ "@turf/meta": "^7.1.0",
67
+ "@types/geojson": "^7946.0.10",
67
68
  "tslib": "^2.6.2"
68
69
  },
69
- "gitHead": "0ce6ecca05829690270fec6d6bed2003495fe0ea"
70
+ "gitHead": "68915eeebc9278bb40dec3f1034499698a0561ef"
70
71
  }