copy
Here are 430 public repositories matching this topic...
-
Updated
Jun 13, 2020 - Go
Hi,
In our app, we create new documents, and edit existing ones.
The documents we are manipulating are not encrypted, however I need to encrypt the new and edited documents I create.
Is that possible in pdf-lib?
I know this option exists in other libraries.
Thanks, and very nice work!
-
Updated
Jun 16, 2020 - Go
-
Updated
Jun 24, 2020 - JavaScript
-
Updated
Dec 30, 2019 - JavaScript
-
Updated
Apr 30, 2020 - JavaScript
-
Updated
Jan 25, 2016 - Shell
-
Updated
Mar 16, 2018 - JavaScript
while using this lib I really shot our database in the head bc those are default to True
we are bulk inserting small pieces (40krows) into a ~400mio table every minute
dropping indices and recreating them all and all over again might not be the best default
-
Updated
Mar 1, 2020 - JavaScript
-
Updated
Jul 1, 2020 - TypeScript
-
Updated
Aug 7, 2019 - Java
-
Updated
Jul 19, 2018 - Python
📝 New Translations
I want to introduce new translations and update current ones. Interested in "Hacktoberfest"? Here you can get started!
Any language is appreciated!
❓ How to contribute
-
Updated
Jun 8, 2020 - HTML
It is Result<u32>, not Result<()>, but the documentation does not tell what that number (u32) means.
if I do a thing like
const copy = require('copy');
const files = ['dist/**/*','README.md','LICENSE.md'];
copy(files, '/tmp/folder', (err, files) => {
// handle result here
})Result :
README.mdandLICENSE.mdare located in/tmp- The content of the
distfolder is in '/tmp/folder'
Should be :
README.mdandLICENSE.mdare located in/tmp/folder- T
-
Updated
Jan 21, 2020 - Java
Add Tests
Improve this page
Add a description, image, and links to the copy topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the copy topic, visit your repo's landing page and select "manage topics."
Looking into the code, I found that ensure* methods only verify if the destination path exist and not if the path is of the right * type. IMHO an error should be thrown if path is of the wrong type. Perhaps
fs.statinstead offs.accessshould suffice...