Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

startof

joenix13MIT1.0.0

Author: Joenix

readme

Start Of

Author: Joenix

import startof from "startof";

// if array
startof(["one", "two", "three"]); // one

// if object
startof({ one: 1, two: 2, three: 3 }); // {one: 1}