We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/holiday-jp/holiday_jp-js/blob/master/lib/holiday_jp.js#L22
この実行によって、祝日データセットの値が date が文字列型から Date 型の値へ変化する。 between 関数は Date 型に変更してオブジェクトを返す意図があると思われるが、値の変更自体は意図しているでしょうか? 🤔
date
var holiday_jp = require(".") holiday_jp.holidays['2010-09-20'].date // '2010-09-20' var holidays = holiday_jp.between(new Date('2010-09-14'), new Date('2010-09-21')); holiday_jp.holidays['2010-09-20'].date // 2010-09-20T00:00:00.000Z
何らかの方法で shallow copy ではなく deep copy の処理をすることで、変数が変更される事は避けられそうです。
The text was updated successfully, but these errors were encountered:
値の変更自体は意図しているでしょうか?
意図はしていないと思います
Sorry, something went wrong.
No branches or pull requests
https://github.com/holiday-jp/holiday_jp-js/blob/master/lib/holiday_jp.js#L22
この実行によって、祝日データセットの値が
date
が文字列型から Date 型の値へ変化する。between 関数は Date 型に変更してオブジェクトを返す意図があると思われるが、値の変更自体は意図しているでしょうか? 🤔
何らかの方法で shallow copy ではなく deep copy の処理をすることで、変数が変更される事は避けられそうです。
The text was updated successfully, but these errors were encountered: