v0.55.8

Try our Chrome extension

Chrome store icon Chrome Webstore

Easily add the current web-page from your browser directly into your changedetection.io tool, more great features coming soon!

Changedetection.io needs your support!

You can help us by supporting changedetection.io on these platforms;

The more popular changedetection.io is, the more time we can dedicate to adding amazing features!

Many thanks :)

changedetection.io team

Aún no hace unos segundos.
            False
        
Aún no hace unos segundos
Captura de pantalla con error actual de la solicitud más reciente
    Skip to content

      Navigation Menu

            Sign in Appearance settings
                * Platform
                        + AI CODE CREATION
                            o GitHub Copilot Write better code with AI
                            o GitHub Copilot app Direct agents from issue to merge
                            o MCP Registry Integrate external tools
                        + DEVELOPER WORKFLOWS
                            o Actions Automate any workflow
                            o Codespaces Instant dev environments
                            o Issues Plan and track work
                            o Code Review Manage code changes
                            o Code Quality Enforce quality at merge
                        + APPLICATION SECURITY
                            o GitHub Advanced Security Find and fix vulnerabilities
                            o Code security Secure your code as you build
                            o Secret protection Stop leaks before they start
                        + EXPLORE
                            o Why GitHub
                            o Documentation
                            o Blog
                            o Changelog
                            o Marketplace
                      View all features
                * Solutions
                        + BY COMPANY SIZE
                            o Enterprises
                            o Small and medium teams
                            o Startups
                            o Nonprofits
                        + BY USE CASE
                            o App Modernization
                            o DevSecOps
                            o DevOps
                            o CI/CD
                            o View all use cases
                        + BY INDUSTRY
                            o Healthcare
                            o Financial services
                            o Manufacturing
                            o Government
                            o View all industries
                      View all solutions
                * Resources
                        + EXPLORE BY TOPIC
                            o AI
                            o Software Development
                            o DevOps
                            o Security
                            o View all topics
                        + EXPLORE BY TYPE
                            o Customer stories
                            o Events & webinars
                            o Ebooks & reports
                            o Business insights
                            o GitHub Skills
                        + SUPPORT & SERVICES
                            o Documentation
                            o Customer support
                            o Community forum
                            o Trust center
                            o Partners
                      View all resources
                * Open Source
                        + COMMUNITY
                            o GitHub Sponsors Fund open source developers
                        + PROGRAMS
                            o Security Lab
                            o Maintainer Community
                            o Accelerator
                            o GitHub Stars
                            o Archive Program
                        + REPOSITORIES
                            o Topics
                            o Trending
                            o Collections
                * Enterprise
                        + ENTERPRISE SOLUTIONS
                            o Enterprise platform AI-powered developer platform
                        + AVAILABLE ADD-ONS
                            o GitHub Advanced Security Enterprise-grade security features
                            o Copilot for Business Enterprise-grade AI features
                            o Premium Support Enterprise-grade 24/7 support
              * Pricing
                Type / to search
                Sign in
              Sign up Appearance settings
      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              Uh oh!

              There was an error while loading. Please reload this page.

              lodash / lodash Public
              * Notifications You must be signed in to change notification settings
              * Fork 7.2k
                * Star 61.3k
          * Code
          * Issues 53
          * Pull requests 47
          * Discussions
          * Actions
          * Projects
          * Wiki
          * Security and quality 3
          * Insights
          Additional navigation options
                  * Code
                  * Issues
                  * Pull requests
                  * Discussions
                  * Actions
                  * Projects
                  * Wiki
                  * Security and quality
                  * Insights
                                              main
                                          Branches Tags
                                            Go to file
                                        Code
                                          Open more actions menu

                                        Folders and files

                                          Name                                Name                                  Last commit message    Last commit date
                                            Latest commit

                                                History

                                                7,708 Commits
                                                  7,708 Commits
                                                  .github                             .github
                                                  dist                                dist
                                                  doc                                 doc
                                                  fp                                  fp
                                                  lib                                 lib
                                                  perf                                perf
                                                  test                                test
                                                  vendor                              vendor
                                                  .editorconfig                       .editorconfig
                                                  .gitattributes                      .gitattributes
                                                  .gitignore                          .gitignore
                                                  .jscsrc                             .jscsrc
                                                  .markdown-doctest-setup.js          .markdown-doctest-setup.js
                                                  CHANGELOG                           CHANGELOG
                                                  GOVERNANCE.md                       GOVERNANCE.md
                                                  LICENSE                             LICENSE
                                                  README.md                           README.md
                                                  SECURITY.md                         SECURITY.md
                                                  incident_response_plan.md           incident_response_plan.md
                                                  lodash.js                           lodash.js
                                                  package-lock.json                   package-lock.json
                                                  package.json                        package.json
                                                  playwright.config.js                playwright.config.js
                                                  renovate.json                       renovate.json
                                                  threat-model.md                     threat-model.md
                                            View all files


                                              Repository files navigation

                                                *
                                                * README
                                                * Contributing
                                                * License
                                                * Security
                                                More items

                                                lodash v4.18.1

                                              Site | Docs | FP Guide | Contributing | Wiki | Code of Conduct | Governance | Twitter | Chat

                                                Important

                                                As announced on the OpenJS Foundation blog, Lodash has received support from the Sovereign Tech Agency and will transition to the Feature-Complete maturity stage so that it remains stable, secure, and sustainable long-term. As part of this effort, Lodash is rebooting its governance. A draft charter will be published shortly. The upcoming Technical Steering Committee (TSC) is already at work. For transparency, its members are listed in GOVERNANCE.md.

                                              The Lodash library exported as a UMD module.

                                              Generated using lodash-cli:

                                                $ npm run build
                                                $ lodash -o ./dist/lodash.js
                                                $ lodash core -o ./dist/lodash.core.js

                                                Download

                                                * Core build (~4 kB gzipped)
                                                * Full build (~24 kB gzipped)
                                                * CDN copies

                                              Lodash is released under the MIT license & supports modern environments.
                                              Review the build differences & pick one that’s right for you.

                                                Installation

                                              In a browser:

                                                <script src="lodash.js"></script>

                                              Using npm:

                                                $ npm i -g npm
                                                $ npm i --save lodash

                                              In Node.js:

                                                // Load the full build.
                                                var _ = require('lodash');
                                                // Load the core build.
                                                var _ = require('lodash/core');
                                                // Load the FP build for immutable auto-curried iteratee-first data-last methods.
                                                var fp = require('lodash/fp');

                                                // Load method categories.
                                                var array = require('lodash/array');
                                                var object = require('lodash/fp/object');

                                                // Cherry-pick methods for smaller browserify/rollup/webpack bundles.
                                                var at = require('lodash/at');
                                                var curryN = require('lodash/fp/curryN');

                                                Why Lodash?

                                              Lodash makes JavaScript easier by taking the hassle out of working with arrays,
                                              numbers, objects, strings, etc. Lodash’s modular methods are great for:

                                                * Iterating arrays, objects, & strings
                                                * Manipulating & testing values
                                                * Creating composite functions

                                                Module Formats

                                              Lodash is available in a variety of builds & module formats.

                                                * lodash & per method packages
                                                * lodash-es, babel-plugin-lodash, & lodash-webpack-plugin
                                                * lodash/fp
                                                * lodash-amd

                                        About

                                        A modern JavaScript utility library delivering modularity, performance, & extras.

                                          lodash.com/

                                        Topics

                                          javascriptlodashmodulesutilities

                                        Resources

                                          Readme
                                          License

                                        Contributing

                                          Contributing

                                        Security policy

                                          Security policy
                                          Activity
                                          Custom properties

                                        Stars

                                          61.3k stars

                                        Watchers

                                          815 watching
                                          816 watching

                                        Forks

                                          7.2k forks
                                          Report repository

                                        Releases

                                        Packages

                                        Used by

                                        Contributors

                                        Languages

    Footer

        © 2026 GitHub, Inc.

      Footer navigation

        * Terms
        * Privacy
        * Security
        * Status
        * Community
        * Docs
        * Contact
        * Manage cookies
        * Do not share my personal information
      You can’t perform that action at this time.
Consejo: Resalte el texto para compartir o agregar a las listas de ignorados.  — Download difference patch
Por ahora, las diferencias se realizan en texto, no gráficamente, solo está disponible la última captura de pantalla.
La captura de pantalla requiere que Playwright/WebDriver esté habilitado