clipboardy 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/macos.js CHANGED
@@ -1,4 +1,4 @@
1
- 'use strct';
1
+ 'use strict';
2
2
  const execa = require('execa');
3
3
 
4
4
  const env = Object.assign({}, process.env, {LC_CTYPE: 'UTF-8'});
package/lib/windows.js CHANGED
@@ -1,4 +1,4 @@
1
- 'use strct';
1
+ 'use strict';
2
2
  const path = require('path');
3
3
  const execa = require('execa');
4
4
  const arch = require('arch');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clipboardy",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Access the system clipboard (copy/paste)",
5
5
  "license": "MIT",
6
6
  "repository": "sindresorhus/clipboardy",