UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

13 lines (12 loc) 475 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.deg2rad = deg2rad; function deg2rad(angle) { // discuss at: https://locutus.io/php/deg2rad/ // parity verified: PHP 8.3 // original by: Enrique Gonzalez // improved by: Thomas Grainger (https://graingert.co.uk) // example 1: deg2rad(45) // returns 1: 0.7853981633974483 return angle * 0.017453292519943295; // (angle / 180) * Math.PI; }