Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 375 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 375 Bytes

Check for power saving mode

Lean plugin to check if device is in power save mode.

Supports:

  • Android
  • iOS

Usage

cordova.plugins.PowerSaveMode.isPowerSaveMode((flag) => {
    if (flag) {
      console.log('Device is in power save mode.');
    }
  });

Maintainer