Comparing version 0.2.7 to 0.2.8
# Changelog | ||
## 0.2.8 | ||
* Fix sourcemaps | ||
## 0.2.7 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "luxon", | ||
"version": "0.2.7", | ||
"version": "0.2.8", | ||
"description": "Immutable date wrapper", | ||
@@ -62,4 +62,10 @@ "author": "Isaac Cambron", | ||
}, | ||
"files": ["build/node/luxon.js", "build/cjs-browser/luxon.js", "src"], | ||
"files": [ | ||
"build/node/luxon.js", | ||
"build/node/luxon.js.map", | ||
"build/cjs-browser/luxon.js", | ||
"build/cjs-browser/luxon.js.map", | ||
"src" | ||
], | ||
"license": "MIT" | ||
} |
@@ -114,3 +114,3 @@ import { Util } from './impl/util'; | ||
* | ||
* * **Creation** To create a Duration, use {@link Duration#fromMillis}, {@link Duration#fromObject}, or {@link Duration#fromISO}. | ||
* * **Creation** To create a Duration, use {@link Duration.fromMillis}, {@link Duration.fromObject}, or {@link Duration.fromISO}. | ||
* * **Unit values** See the {@link years}, {@link months}, {@link weeks}, {@link days}, {@link hours}, {@link minutes}, {@link seconds}, {@link milliseconds} accessors. | ||
@@ -117,0 +117,0 @@ * * **Configuration** See {@link locale} and {@link numberingSystem} accessors. |
@@ -190,3 +190,3 @@ import { Util } from './impl/util'; | ||
/** | ||
* Return this Interval's start is after the specified DateTime. | ||
* Return whether this Interval's start is after the specified DateTime. | ||
* @param {DateTime} dateTime | ||
@@ -201,3 +201,3 @@ * @return {boolean} | ||
/** | ||
* Return this Interval's end is before the specified DateTime. | ||
* Return whether this Interval's end is before the specified DateTime. | ||
* @param {Datetime} dateTime | ||
@@ -212,3 +212,3 @@ * @return {boolean} | ||
/** | ||
* Return this Interval contains the specified DateTime. | ||
* Return whether this Interval contains the specified DateTime. | ||
* @param {DateTime} dateTime | ||
@@ -215,0 +215,0 @@ * @return {boolean} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1957395
29
1