@openclaw/slack 2026.6.6 → 2026.6.8-beta.2
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/dist/api.js +3 -3
- package/dist/{channel-i43aT1rv.js → channel-BxD37X5Y.js} +13 -3
- package/dist/channel-plugin-api.js +1 -1
- package/dist/{channel.setup-DrCTObMp.js → channel.setup-W5YnieWd.js} +1 -1
- package/dist/{monitor-Szm2LjsM.js → monitor-DwDmBYfl.js} +2 -2
- package/dist/{pipeline.runtime-Dvqs0AT-.js → pipeline.runtime-1FYOQOt_.js} +182 -22
- package/dist/{provider-LH_j-bLA.js → provider-ChhYGpXx.js} +10 -3
- package/dist/replies-Bt4nWmSd.js +285 -0
- package/dist/runtime-api.js +2 -2
- package/dist/setup-plugin-api.js +1 -1
- package/dist/{setup-surface-BB_ivsoR.js → setup-surface-NNMjGpXc.js} +1 -1
- package/dist/{shared-Bviszgb6.js → shared-Bkkmro6q.js} +88 -26
- package/dist/{slash-dispatch.runtime-CoFAysiw.js → slash-dispatch.runtime-Dvvs747S.js} +1 -1
- package/node_modules/form-data/CHANGELOG.md +26 -1
- package/node_modules/form-data/README.md +4 -4
- package/node_modules/form-data/lib/form_data.js +7 -2
- package/node_modules/form-data/package.json +11 -10
- package/npm-shrinkwrap.json +7 -15
- package/package.json +5 -5
- package/dist/replies-FEOdgSlE.js +0 -142
- package/node_modules/form-data/README.md.bak +0 -350
- package/node_modules/has-own/.travis.yml +0 -4
- package/node_modules/has-own/History.md +0 -5
- package/node_modules/has-own/LICENSE +0 -22
- package/node_modules/has-own/Makefile +0 -5
- package/node_modules/has-own/README.md +0 -19
- package/node_modules/has-own/index.js +0 -8
- package/node_modules/has-own/package.json +0 -19
- package/node_modules/has-own/test/index.js +0 -36
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
var assert = require('assert');
|
|
3
|
-
var hasOwn = require('../');
|
|
4
|
-
|
|
5
|
-
describe('hasOwn', function() {
|
|
6
|
-
it('works', function(done) {
|
|
7
|
-
assert(hasOwn('name', { name: 'hasOwn' }));
|
|
8
|
-
done();
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
it('handles overridden hasOwnProperty fns', function(done) {
|
|
12
|
-
var o = { name: 'hasOwn' };
|
|
13
|
-
o.hasOwnProperty = function() {}
|
|
14
|
-
|
|
15
|
-
assert(hasOwn('name', o));
|
|
16
|
-
done();
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
it('handles object created with Object.create(null)', function(done) {
|
|
20
|
-
var o = Object.create(null);
|
|
21
|
-
o.name = 'hasOwn';
|
|
22
|
-
assert(hasOwn('name', o));
|
|
23
|
-
done();
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
it('returns false when appropriate', function(done) {
|
|
27
|
-
var o = { name: 'has-own' };
|
|
28
|
-
assert(!hasOwn('age', o));
|
|
29
|
-
done();
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
it('exposes its version', function(done) {
|
|
33
|
-
assert('string' == typeof hasOwn.version);
|
|
34
|
-
done();
|
|
35
|
-
});
|
|
36
|
-
});
|