Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace deprecated usages of util.isDate & util.isString #429

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/metadata/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ class Metadata {
if (Array.isArray(components)) {
return this.tokenizer.hash(Buffer.concat(components));
}
else if (util.isString(components)) {
else if (typeof components === "string") {
return this.tokenizer.parse(components);
}
return this.tokenizer.hash(components);
Expand Down
2 changes: 1 addition & 1 deletion lib/types/local-time.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ LocalTime.now = function (nanoseconds) {
* @returns {LocalTime}
*/
LocalTime.fromDate = function (date, nanoseconds) {
if (!util.isDate(date)) {
if (!(date instanceof Date)) {
throw new Error('Not a valid date');
}
//Use the local representation, only the milliseconds portion
Expand Down
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function deepExtend(target) {
targetType === 'number' ||
targetType === 'string' ||
Array.isArray(targetProp) ||
util.isDate(targetProp) ||
targetProp instanceof Date ||
targetProp.constructor.name !== 'Object') {
target[prop] = source[prop];
}
Expand Down