CtrlK
BlogDocsLog inGet started
Tessl Logo

tessl/npm-lodash-es

Lodash utility library exported as ES6 modules for modern JavaScript applications with tree-shaking support.

Pending
Quality

Pending

Does it follow best practices?

Impact

Pending

No eval scenarios have been run

SecuritybySnyk

Pending

The risk profile of this skill

Overview
Eval results
Files

date.mddocs/

Date Functions

Date and time utilities for timestamp operations.

Capabilities

Timestamp Utilities

/**
 * Gets the timestamp of the number of milliseconds that have elapsed since the Unix epoch
 * @returns {number} Returns the timestamp
 */
function now();

Usage Examples

import { now } from "lodash-es";

// Get current timestamp
const timestamp = now(); // 1640995200000 (example)

// Useful for performance measurement
const start = now();
// ... some operation
const duration = now() - start;
console.log(`Operation took ${duration}ms`);

// Alternative to Date.now()
console.log(now() === Date.now()); // true (approximately)

docs

array.md

collection.md

date.md

function.md

index.md

lang.md

math.md

number.md

object.md

seq.md

string.md

util.md

tile.json