@turf/boolean-parallel 6.4.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,12 +6,12 @@
6
6
 
7
7
  Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`
8
8
 
9
- **Parameters**
9
+ ### Parameters
10
10
 
11
- - `line1` **([Geometry][1] \| [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry
12
- - `line2` **([Geometry][1] \| [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry
11
+ * `line1` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry
12
+ * `line2` **([Geometry][1] | [Feature][2]<[LineString][3]>)** GeoJSON Feature or Geometry
13
13
 
14
- **Examples**
14
+ ### Examples
15
15
 
16
16
  ```javascript
17
17
  var line1 = turf.lineString([[0, 0], [0, 1]]);
package/dist/es/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import cleanCoords from "@turf/clean-coords";
2
2
  import lineSegment from "@turf/line-segment";
3
3
  import rhumbBearing from "@turf/rhumb-bearing";
4
- import { bearingToAzimuth, } from "@turf/helpers";
4
+ import { bearingToAzimuth } from "@turf/helpers";
5
5
  /**
6
6
  * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`
7
7
  *
@@ -1,4 +1,4 @@
1
- import { Feature, LineString } from "@turf/helpers";
1
+ import { Feature, LineString } from "geojson";
2
2
  /**
3
3
  * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`
4
4
  *
package/dist/js/index.js CHANGED
@@ -1,12 +1,10 @@
1
1
  "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
- var clean_coords_1 = __importDefault(require("@turf/clean-coords"));
7
- var line_segment_1 = __importDefault(require("@turf/line-segment"));
8
- var rhumb_bearing_1 = __importDefault(require("@turf/rhumb-bearing"));
9
- var helpers_1 = require("@turf/helpers");
3
+ const tslib_1 = require("tslib");
4
+ const clean_coords_1 = tslib_1.__importDefault(require("@turf/clean-coords"));
5
+ const line_segment_1 = tslib_1.__importDefault(require("@turf/line-segment"));
6
+ const rhumb_bearing_1 = tslib_1.__importDefault(require("@turf/rhumb-bearing"));
7
+ const helpers_1 = require("@turf/helpers");
10
8
  /**
11
9
  * Boolean-Parallel returns True if each segment of `line1` is parallel to the correspondent segment of `line2`
12
10
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/boolean-parallel",
3
- "version": "6.4.0",
3
+ "version": "7.0.0-alpha.0",
4
4
  "description": "turf boolean-parallel module",
5
5
  "author": "Turf Authors",
6
6
  "contributors": [
@@ -15,6 +15,7 @@
15
15
  "type": "git",
16
16
  "url": "git://github.com/Turfjs/turf.git"
17
17
  },
18
+ "funding": "https://opencollective.com/turf",
18
19
  "publishConfig": {
19
20
  "access": "public"
20
21
  },
@@ -59,10 +60,11 @@
59
60
  "write-json-file": "*"
60
61
  },
61
62
  "dependencies": {
62
- "@turf/clean-coords": "^6.4.0",
63
- "@turf/helpers": "^6.4.0",
64
- "@turf/line-segment": "^6.4.0",
65
- "@turf/rhumb-bearing": "^6.4.0"
63
+ "@turf/clean-coords": "^7.0.0-alpha.0",
64
+ "@turf/helpers": "^7.0.0-alpha.0",
65
+ "@turf/line-segment": "^7.0.0-alpha.0",
66
+ "@turf/rhumb-bearing": "^7.0.0-alpha.0",
67
+ "tslib": "^2.3.0"
66
68
  },
67
- "gitHead": "1e62773cfc88c627cca8effcb5c14cfb65a905ac"
69
+ "gitHead": "0edc4c491b999e5ace770a61e1cf549f7c004189"
68
70
  }