
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
shamsi-date-converter
Advanced tools
A Jalali to Gregorian and Gregorian to Jalali converter with no dependency!
This plugin convert jalali to gregorian and gregorian to jalali in the most simple way
Convert gregorian to jalali
shamsi.gregorianToJalali(1989, 1, 24); //[1367, 11, 4]
// OR
shamsi.gregorianToJalali('July 17, 1995 03:24:00'); //[1374, 4, 26]
// OR
const date = new Date('July 17, 1995 03:24:00');
shamsi.gregorianToJalali(date); //[1374, 4, 26]
Convert jalali to gregorian
shamsi.jalaliToGregorian(1367, 11, 4); //[1989, 1, 24]
Install via npm
npm install shamsi-date-converter -S
Install via yarn
yarn add shamsi-date-converter
Install it via npm or yarn then use it as the following code
var shamsi = require('shamsi-date-converter');
shamsi.gregorianToJalali('July 17, 1995 03:24:00'); //[1374, 4, 26]
get library using bower, npm, cdn, or cloning the repository
<script src="https://unpkg.com/shamsi-date-converter"></script>
<script>
shamsi.gregorianToJalali(1989, 1, 24);
</script>
import * as shamsi from 'shamsi-date-converter';
...
render() {
return (<p>{shamsi.gregorianToJalali(1989, 1, 24).join('/')}</p>);
}
get library using bower, npm, cdn, or cloning the repository
<script src="https://unpkg.com/shamsi-date-converter"></script>
<script>
$("#date").text(shamsi.gregorianToJalali(1989, 1, 24).join('/'));
</script>
If you don't need to pass date as input and you just want to pass year
, month
and date
, you have to use shamsi
If you want to pass formatted date as input or get formatted date from output like:
gregorianToJalali('1995/7/17'); // => 1374/4/26
// OR
jalaliToGregorian('1374/4/26'); // => 1995/7/17
// OR other formats as input or outputs
you have to use shamsi-formatter
FAQs
A minimal Jalali to Gregorian and Gregorian to Jalali converter
We found that shamsi-date-converter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.